Constructor IniSection
- Namespace
- Sisk.IniConfiguration.Core
- Assembly
- Sisk.IniConfiguration.Core.dll
IniSection(string)
Initializes a new instance of the IniSection class with the specified name.
public IniSection(string name)
Parameters
name
stringThe name of the INI section.
IniSection(string, IEnumerable<KeyValuePair<string, string>>)
Initializes a new instance of the IniSection class with the specified name and items.
public IniSection(string name, IEnumerable<KeyValuePair<string, string>> items)
Parameters
name
stringThe name of the INI section.
items
IEnumerable<KeyValuePair<string, string>>A collection of key-value pairs to be added to the section.