ReadOnlyCollection<(Of <(<'T>)>)>..::..Item Property
Gets the element at the specified index.
Namespace:
System.Collections.ObjectModelAssembly: Bridge (in Bridge.dll)
Syntax
[AccessorsIndexerAttribute] [NameAttribute] public T this[ int index ] { get; }
<AccessorsIndexerAttribute> _ <NameAttribute> _ Public ReadOnly Default Property Item ( _ index As Integer _ ) As T Get
[AccessorsIndexerAttribute] [NameAttribute] public: property T default[int^ index] { T get (int^ index); }
Parameters
- index
- Type: System..::..Int32
The zero-based index of the element to get.
Return Value
The element at the specified index.Exceptions
Exception | Condition |
---|---|
System..::..ArgumentOutOfRangeException | index is less than zero.-or-index is equal to or greater than Count. |