ARCed.Core.Ini.Write C# (CSharp) Method

Write() public static method

Writes a value to the .ini file
public static Write ( string section, string key, string value ) : void
section string The section of the .ini file
key string A key name in the .ini file
value string The value to write
return void
        public static void Write(string section, string key, string value)
        {
            if (_filename != null)
                NativeMethods.WritePrivateProfileString(section, key, value, _filename);
        }