IniSection.ContainsKey Method

TG.INI

IniSectionContainsKey Method

Checks if a key exists in the section.

Namespace:  TG.INI
Assembly:  TG.INI (in TG.INI.dll) Version: 1.2.2.0 (1.2.2.0)
Syntax
public bool ContainsKey(
	string key
)
Public Function ContainsKey ( 
	key As String
) As Boolean
public:
bool ContainsKey(
	String^ key
)
member ContainsKey : 
        key : string -> bool 

Parameters

key
Type: SystemString
The key to look for.

Return Value

Type: Boolean
Returns true if the key exists in the series; otherwise false.
See Also