예제 #1
0
        public string IniReadValue(string Section, string Key)
        {
            StringBuilder stringBuilder = new StringBuilder(255);

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