示例#1
0
 /// <summary>
 /// コンストラクタ
 /// </summary>
 /// <param name="id"></param>
 /// <param name="section"></param>
 public SectionNode(string id, SectionBase section)
 {
     this.id      = id;
     this.section = section;
 }
示例#2
0
 /// <summary>
 /// ノードを新規取得
 /// </summary>
 /// <param name="id"></param>
 /// <param name="section"></param>
 protected SectionNode CreateSectionNode(string id, SectionBase section)
 {
     this.id = id;
     return(new SectionNode(id, section));
 }