예제 #1
0
파일: XMLConfig.cs 프로젝트: uiopsczc/Test
        public XMLConfig AddConfig(int index, string tag)
        {
            XMLConfig subConfig = new XMLConfig();

            subConfig.parentConfig = this;
            subConfig.SetName(tag);
            this.configList.Insert(index, subConfig);
            return(subConfig);
        }
예제 #2
0
파일: XMLConfig.cs 프로젝트: uiopsczc/Test
        public XMLConfig AddConfig(string tag)
        {
            XMLConfig subConfig = new XMLConfig();

            subConfig.parentConfig = this;
            subConfig.SetName(tag);
            this.configList.Add(subConfig);
            return(subConfig);
        }