Creates a new KeyValuePair structure with the key and value set to the parameters supplied

Namespace:  Asi.iBO
Assembly:  Asi.iBO (in Asi.iBO.dll) Version: 15.1.2.0

Syntax

C#
public KeyValuePair(
	string key,
	string value
)
Visual Basic (Declaration)
Public Sub New ( _
	key As String, _
	value As String _
)
Visual C++
public:
KeyValuePair(
	String^ key, 
	String^ value
)

Parameters

key
Type: System..::.String
The key used to represent the value. See Key.
value
Type: System..::.String
The value represented by the key. See Value.

See Also