NFe.Components.IniFile.Write C# (CSharp) Method

Write() public method

public Write ( string Key, string Value, string Section = null ) : void
Key string
Value string
Section string
return void
        public void Write(string Key, string Value, string Section = null)
        {
            WritePrivateProfileString(Section ?? EXE, Key, Value, Path);
        }