Method Add
- Namespace
- Sisk.IniConfiguration.Core
- Assembly
- Sisk.IniConfiguration.Core.dll
Add(string, string[])
public void Add(string key, string[] value)
Parameters
Add(string, string?)
Adds a new key-value pair to the INI section.
public void Add(string key, string? value)
Parameters
key
stringThe key to be added.
value
stringThe value associated with the key, or
null
to set an empty value.
Add(KeyValuePair<string, string[]>)
public void Add(KeyValuePair<string, string[]> item)
Parameters
item
KeyValuePair<string, string[]>