Indexed access to all elements currently in the collection. Indexing starts at 0 (head) and ends at Count-1 (tail).

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; set; }
Visual Basic (Declaration)
Public Default Property Item ( _
	index As Integer _
) As T
Visual C++
public:
property T default[int index] {
	T get (int index);
	void set (int index, T value);
}

Parameters

index
Type: System..::.Int32

See Also