Beispiel #1
0
 /// <summary>
 /// Sets a config value as the Type Indicated
 /// </summary>
 /// <param name="Section">The ini section of this setting</param>
 /// <param name="Key">The setting name</param>
 /// <param name="Value">The new setting value</param>
 public static void SetValue(string Section, string Key, object Value)
 {
     Config.WritePrivateProfileString(Section, Key, Value.ToString(), IniLocation);
 }