using System; using System.Collections.Generic; namespace SPSolutions.SharePoint.Administration { public class CommandLineParameterCollection : Dictionary { public void Add(CommandLineParameter parameter) { base.Add(parameter.Name, parameter); } } }