Ejemplo n.º 1
0
        // Token: 0x06000005 RID: 5 RVA: 0x00002074 File Offset: 0x00000274
        public string IniReadValue(string Section, string Key)
        {
            StringBuilder stringBuilder        = new StringBuilder(500);
            int           privateProfileString = INIClass.GetPrivateProfileString(Section, Key, "", stringBuilder, 500, this.inipath);

            return(stringBuilder.ToString());
        }
Ejemplo n.º 2
0
 // Token: 0x06000004 RID: 4 RVA: 0x00002062 File Offset: 0x00000262
 public void IniWriteValue(string Section, string Key, string Value)
 {
     INIClass.WritePrivateProfileString(Section, Key, Value, this.inipath);
 }