Table of Contents

Method Add

Namespace
Sisk.IniConfiguration.Core
Assembly
Sisk.IniConfiguration.Core.dll

Add(string, string[])

public void Add(string key, string[] value)

Parameters

key string
value string[]

Add(string, string?)

Adds a new key-value pair to the INI section.

public void Add(string key, string? value)

Parameters

key string

The key to be added.

value string

The 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[]>