SynchronizedCollection<T>::IList::Insert Method (Int32, Object^)
.NET Framework (current version)
Inserts an object into the collection at a specified index.
Assembly: System.ServiceModel (in System.ServiceModel.dll)
Parameters
- index
-
Type:
System::Int32
The zero-based index at which value is to be inserted.
- value
-
Type:
System::Object^
The object to insert into the collection.
Implements
IList::Insert(Int32, Object^)| Exception | Condition |
|---|---|
| ArgumentOutOfRangeException | The index specified is less than zero or greater than the number of items in the collection. |
| ArgumentException | The value set is null or is not of the correct generic type T for the collection. |
If the index is equal to the number of elements in the collection, the item is appended to the list. If the index is less than the number of elements in the collection, the elements that follow the point of insertion of the item move down to accommodate the new element.
.NET Framework
Available since 3.0
Available since 3.0
Show: