TaskPreconditionCollectionInsert Method |
Inserts an item to the IListT at the specified index.
Namespace:
AGI.Parallel.Client
Assembly:
AGI.Parallel.Client (in AGI.Parallel.Client.dll) Version: 2.10.0.1777 (2.10.0.1777)
Syntaxpublic void Insert(
int index,
TaskPrecondition item
)
Public Sub Insert (
index As Integer,
item As TaskPrecondition
)
Parameters
- index
- Type: SystemInt32
The zero-based index at which item should be inserted. - item
- Type: AGI.Parallel.InfrastructureTaskPrecondition
The object to insert into the IListT.
Implements
IListTInsert(Int32, T)
ExceptionsException | Condition |
---|
ArgumentOutOfRangeException | index is not a valid index in the IListT. |
NotSupportedException | The IListT is read-only. |
See Also