Returns the array starting at the specified position.
Namespace:
Extreme.Collections
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public Array2D<T> From(
int row,
int column
)
Public Function From (
row As Integer,
column As Integer
) As Array2D(Of T)
public:
Array2D<T> From(
int row,
int column
)
member From :
row : int *
column : int -> Array2D<'T>
Parameters
- row
- Type: SystemInt32
The zero-based row of the top left element. - column
- Type: SystemInt32
The zero-based column of the top left element.
Return Value
Type:
Array2DT
Reference