Esempio n. 1
0
        private static void INIDelete(string INIPath, string SectionName, string KeyName)
        {
            string arglpString = null;

            Ini.WritePrivateProfileString(SectionName, KeyName, arglpString, INIPath);
        }
Esempio n. 2
0
 private static void INIWrite(string INIPath, string SectionName, string KeyName, string TheValue)
 {
     Ini.WritePrivateProfileString(SectionName, KeyName, TheValue, INIPath);
 }