Copies the specified number of elements to a .NET array.
Namespace:
Extreme.Collections
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public T[] ToArray(
int length
)
Public Function ToArray (
length As Integer
) As T()
public:
array<T>^ ToArray(
int length
)
member ToArray :
length : int -> 'T[]
Parameters
- length
- Type: SystemInt32
The number of elements to copy.
Return Value
Type:
TA .NET array containing the first
length elements
in the array.
Reference