Get the index-th coordinate

Namespace:  Cloudster.Samples.VectorND
Assembly:  Cloudster.Samples.VectorND.Role (in Cloudster.Samples.VectorND.Role.dll) Version: 1.0.0.0 (1.0.0.0)

Syntax

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

Parameters

index
Type: System..::.Int32
The coordinate to get

Return Value

The content of the coordinate

See Also