Click or drag to resize

VectorStorageTItem Property

Gets or sets the value at the given index, with range checking.

Namespace: Altaxo.Calc.LinearAlgebra.Storage
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
public T this[
	int index
] { get; set; }

Parameters

index  Int32
The index of the element.

Property Value

T
The value to get or set.
Remarks
This method is ranged checked. At(Int32) and At(Int32, T) to get and set values without range checking.
See Also