NSoft.NFramework.Nini.Config.ConfigCollection.IList C# (CSharp) 메소드

IList() 개인적인 메소드

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

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

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