The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.
IList::Insert Method (Int32, Object^)
.NET Framework (current version)
Inserts an item to the IList at the specified index.
Assembly: mscorlib (in mscorlib.dll)
Parameters
- index
-
Type:
System::Int32
The zero-based index at which value should be inserted.
- value
-
Type:
System::Object^
The object to insert into the IList.
| Exception | Condition |
|---|---|
| ArgumentOutOfRangeException | index is not a valid index in the IList. |
| NotSupportedException | |
| NullReferenceException | value is null reference in the IList. |
If index equals the number of items in the IList, then value is appended to the end.
In collections of contiguous elements, such as lists, the elements that follow the insertion point move down to accommodate the new element. If the collection is indexed, the indexes of the elements that are moved are also updated. This behavior does not apply to collections where elements are conceptually grouped into buckets, such as a hash table.
Universal Windows Platform
Available since 8
.NET Framework
Available since 1.1
Portable Class Library
Supported in: portable .NET platforms
Silverlight
Available since 2.0
Windows Phone Silverlight
Available since 7.0
Windows Phone
Available since 8.1
Available since 8
.NET Framework
Available since 1.1
Portable Class Library
Supported in: portable .NET platforms
Silverlight
Available since 2.0
Windows Phone Silverlight
Available since 7.0
Windows Phone
Available since 8.1
Show: