NSoft.NFramework.Nini.Config.ConfigCollection.IList C# (CSharp) Method

IList() private method

private IList ( object config ) : int
config object
return int
        int IList.Add(object config) {
            var newConfig = config as IConfig;

            Guard.Assert(() => newConfig != null, "Must be an IConfig");

            Add(newConfig);
            return IndexOf(newConfig);
        }