Array
            
            
            Returns a new contiguous 2D array with the specified elements of the current array.
            
Definition
Namespace: Numerics.NET.Collections
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.1.5
    C#
    
 
 
A new contiguous 2D array containing the elements of the current array in the rows and columns specified by rowCount and columnCount.
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.1.5
public Array2D<T> CloneData(
	int rowCount,
	int columnCount
)Parameters
- rowCount Int32
- The number of rows in the new array.
- columnCount Int32
- The number of columns in the new array.
Return Value
Array2D<T>A new contiguous 2D array containing the elements of the current array in the rows and columns specified by rowCount and columnCount.