Array2D<T>.RowFrom Method

Returns the array slice that corresponds to a row in the array that starts at the specified position.

Definition

Namespace: Numerics.NET.Collections
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.0
C#
public ArraySlice<T> RowFrom(
	int row,
	int column
)

Parameters

row  Int32
The zero-based row of the first element in the array slice.
column  Int32
The zero-based column of the first element in the array slice.

Return Value

ArraySlice<T>
An array slice that corresponds to a row in the array that starts at the specified position.

Implements

IStorage2D<T, TSlice, TStorage2D>.RowFrom(Int32, Int32)

See Also