OrderedDictionary::Item Property (Int32)
Gets or sets the value at the specified index.
Assembly: System (in System.dll)
public: virtual property Object^ Item[int index] { Object^ get (int index) sealed; void set (int index, Object^ value) sealed; }
Parameters
- index
- Type: System::Int32
The zero-based index of the value to get or set.
Implements
IOrderedDictionary::Item[Int32]| Exception | Condition |
|---|---|
| NotSupportedException | The property is being set and the OrderedDictionary collection is read-only. |
| ArgumentOutOfRangeException | index is less than zero. -or- index is equal to or greater than Count. |
This property allows you 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.