コード例 #1
0
ファイル: IniFiles.cs プロジェクト: francisrc/FileExplorer
 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);
     }
 }
コード例 #2
0
ファイル: IniFiles.cs プロジェクト: francisrc/FileExplorer
 public KeyEntry(SectionEntry aSection, string aKey, string aValue)
 {
     key   = aKey;
     value = aValue;
     owner = aSection;
 }