Maps the specified key to the specified object or value in this dictionary.

Namespace: HiComponents.IEvolution
Assembly: IEvolution2 (in IEvolution2.dll) Version: 10.1.0.0

Syntax

         
 C#  Visual Basic  Visual C++ 
public void Insert(
	string key,
	bool value
)
Public Sub Insert ( _
	key As String, _
	value As Boolean _
)
public:
void Insert(
	String^ key, 
	bool value
)

Parameters

key
String
A string key
value
Boolean
Object/value to store. The dictionary owns the object: it will be automatically disposed.

See Also