Example #1
0
 public SectionData(SectionData ori)
 {
     mComments          = new List <string>(ori.mComments);
     mKeyDataCollection = new KeyDataCollection(ori.mKeyDataCollection);
 }
Example #2
0
 public SectionData(string sectionName)
 {
     mComments          = new List <string>();
     mKeyDataCollection = new KeyDataCollection();
     SectionName        = sectionName;
 }