Namespace:  Endeca.Data
Assembly:  Endeca.Data (in Endeca.Data.dll) Version: 2.1.3.0 (2.1.3.622)

Syntax

C#
public T this[
	int index
] { get; set; }
Visual Basic (Declaration)
Public Default Property Item ( _
	index As Integer _
) As T
Visual C++
public:
virtual property T default[int index] {
	T get (int index) sealed;
	void set (int index, T value) sealed;
}

Parameters

index
Type: System..::.Int32

Implements

IList<(Of <(T>)>)..::.Item[([(Int32])])

Exceptions

ExceptionCondition
System..::.NotSupportedExceptionif the setter of this property is called.

See Also