Insert an element with the specified key and value into the collection at the given position
Namespace:
WorkflowGen.My.Collections
Assembly:
WorkflowGen.My (in WorkflowGen.My.dll) Version: 8.0.0.0 (8.0.0.0)
Syntax public void Insert(
int index,
Object key,
Object value
)
Public Sub Insert (
index As Integer,
key As Object,
value As Object
)
Parameters
- index
- Type: SystemInt32
The zero-based index in array at which inserting item - key
- Type: SystemObject
The key of the element to add - value
- Type: SystemObject
The value of the element to add. The value can be null
See Also