 | CondensedCollectionTInsert Method |
[This is preliminary documentation and is subject to change.]
Inserts an element into the collection at the specified index.
Namespace:
Condensed
Assembly:
Condensed (in Condensed.dll) Version: 0.1.0.0 (0.1.0.0)
Syntaxpublic void Insert(
int index,
T item
)
Public Sub Insert (
index As Integer,
item As T
)
public:
virtual void Insert(
int index,
T item
) sealed
abstract Insert :
index : int *
item : 'T -> unit
override Insert :
index : int *
item : 'T -> unit Parameters
- index
- Type: SystemInt32
The zero-based index at which item should be inserted. - item
- Type: T
The object to insert into the collection.
Implements
IListTInsert(Int32, T)
See Also