Method ToArray
ToArray<T>(int, int)
Returns the data as an array.
Declaration
public T[] ToArray<T>(int dstCount, int srcOffset = 0) where T : unmanaged
Parameters
| Type | Name | Description |
|---|---|---|
| int | dstCount | The number of elements. |
| int | srcOffset | The index of the first element. |
Returns
| Type | Description |
|---|---|
| T[] | The copied array of the data. |
Type Parameters
| Name | Description |
|---|---|
| T | The type of the data. |