public SectionEntry this[string section] { get { SectionEntry retVal = SectionExistsEx(section); if (retVal != null) { return(retVal); } if (!ReadOnly) { retVal = new SectionEntry(this, section); sections.Add(retVal); return(retVal); } return(null); } }
public KeyEntry(SectionEntry aSection, string aKey, string aValue) { key = aKey; value = aValue; owner = aSection; }