Array2D<T>.Item Property

Gets or sets the element at the specified position.

Definition

Namespace: Numerics.NET.Collections
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.0
C#
public T this[
	int row,
	int column
] { get; set; }

Parameters

row  Int32
The zero-based row of the element.
column  Int32
The zero-based column of the element.

Return Value

T
The value of the element.

Implements

IStorage2D<T>.Item[Int32, Int32]

See Also