IniSection.AddKeyValue Method (String, String)

TG.INI

IniSectionAddKeyValue Method (String, String)

Adds a new key/value entry to the section.

Namespace:  TG.INI
Assembly:  TG.INI (in TG.INI.dll) Version: 1.2.2.0 (1.2.2.0)
Syntax
public IniKeyValue AddKeyValue(
	string key,
	string value
)
Public Function AddKeyValue ( 
	key As String,
	value As String
) As IniKeyValue
public:
IniKeyValue^ AddKeyValue(
	String^ key, 
	String^ value
)
member AddKeyValue : 
        key : string * 
        value : string -> IniKeyValue 

Parameters

key
Type: SystemString
The key of the entry.
value
Type: SystemString
The value of the entry.

Return Value

Type: IniKeyValue
A new instance of IniKeyValue.
See Also