Retrieves an element at the specified index.

Namespace:  RightEdge.Common
Assembly:  Common (in Common.dll) Version: 2010.1.0.0 (2010.1.0.0)

Syntax

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

Parameters

index
Type: System..::.Int32
integer containing the index.

Return Value

The element located at the specified index.

See Also