예제 #1
0
 public bool GetBoolean(string Section, string Key, bool Default)
 {
     return(MyIni.GetPrivateProfileInt(Section, Key, -(Default ? 1 : 0), this.strFilename) == 1);
 }
예제 #2
0
 public int GetInteger(string Section, string Key, int Default)
 {
     return(MyIni.GetPrivateProfileInt(Section, Key, Default, this.strFilename));
 }