Method Write
- Namespace
- Sisk.IniConfiguration.Core.Serialization
- Assembly
- Sisk.IniConfiguration.Core.dll
Write(string, string?)
Writes a key-value pair to the INI file.
public void Write(string key, string? value)
Parameters
Write(in KeyValuePair<string, string[]>)
Writes a key-value pair to the INI file, where the value is an array of strings.
public void Write(in KeyValuePair<string, string[]> value)
Parameters
value
KeyValuePair<string, string[]>The key-value pair to write.
Write(IniSection)
Writes an INI section to the INI file.
public void Write(IniSection section)
Parameters
section
IniSectionThe section to write.
Write(IniDocument)
Writes an INI document to the INI file.
public void Write(IniDocument document)
Parameters
document
IniDocumentThe document to write.