예제 #1
0
        public string IniReadValue(string Section, string Key)
        {
            StringBuilder retVal = new StringBuilder((int)byte.MaxValue);

            INIFile.GetPrivateProfileString(Section, Key, "", retVal, (int)byte.MaxValue, this.path);
            return(retVal.ToString());
        }
예제 #2
0
 public byte[] IniReadValues(string section, string key)
 {
     byte[] retVal = new byte[(int)byte.MaxValue];
     INIFile.GetPrivateProfileString(section, key, "", retVal, (int)byte.MaxValue, this.path);
     return(retVal);
 }