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