NSoft.NFramework.Nini.Config.ConfigCollection.IList C# (CSharp) Méthode

IList() private méthode

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

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

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