Bridge

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

Gets or sets the element at the specified index.

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

Syntax


[TemplateAttribute]
[TemplateAttribute]
T this[
	int index
] { get; set; }
<TemplateAttribute> _
<TemplateAttribute> _
Default Property Item ( _
	index As Integer _
) As T
	Get
	Set
[TemplateAttribute]
[TemplateAttribute]
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 not a valid index in the IList<(Of <(<'T>)>)>.
System..::..NotSupportedExceptionThe property is set and the IList<(Of <(<'T>)>)> is read-only.