Bridge

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

Gets or sets the element at the specified index.

Namespace:  System.Collections.Generic
Assembly:  Bridge (in Bridge.dll)

Syntax


[AccessorsIndexerAttribute]
public T this[
	int index
] { get; set; }
<AccessorsIndexerAttribute> _
Public Default Property Item ( _
	index As Integer _
) As T
	Get
	Set
[AccessorsIndexerAttribute]
public:
property T default[int^ index] {
	T get (int^ index);
	void set (int^ index, T value);
}

Parameters

index
Type: System..::..Int32
The zero-based index of the element to get or set.

Return Value

The element at the specified index.

Exceptions


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