This documentation is archived and is not being maintained.
IList::Item Property
Visual Studio 2010
Gets or sets the element at the specified index.
Assembly: mscorlib (in mscorlib.dll)
property Object^ Item[int index] { Object^ get (int index); void set (int index, Object^ value); }
Parameters
- index
- Type: System::Int32
The zero-based index of the element to get or set.
| Exception | Condition |
|---|---|
| ArgumentOutOfRangeException | index is not a valid index in the IList. |
| NotSupportedException | The property is set and the IList is read-only. |
This property provides the ability to access a specific element in the collection by using the following syntax: myCollection[index].
The C# language uses the this keyword to define the indexers instead of implementing the Item property. Visual Basic implements Item as a default property, which provides the same indexing functionality.
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Show: