Obtain the index element in this sequence

Namespace:  Emgu.CV
Assembly:  Emgu.CV (in Emgu.CV.dll) Version: 2.0.1.0 (2.0.1.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
the index of the element

Return Value

the index element in this sequence

See Also