コード例 #1
0
ファイル: INI.cs プロジェクト: ctmwow/mania.launcher
 protected void IniWriteValue(string Section, string Key, string Value)
 {
     INI.WritePrivateProfileString(Section, Key, Value, this._path);
 }
コード例 #2
0
ファイル: INI.cs プロジェクト: ctmwow/mania.launcher
 public Section(string name, INI file)
 {
     this.Name = name;
     this.File = file;
 }