Bridge

ReadOnlyCollection<(Of <(<'T>)>)>..::..Item Property

Gets the element at the specified index.

Namespace:  System.Collections.ObjectModel
Assembly:  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


ExceptionCondition
System..::..ArgumentOutOfRangeExceptionindex is less than zero.-or-index is equal to or greater than Count.