Overload List
| # | Signature | Description |
|---|---|---|
| 1 | void CopyToArray(ref TCplx[] Dst) | Copies calling object data to array. |
| 2 | void CopyToArray(ref Double[] Dst) | Copies calling object data to array. |
| 3 | void CopyToArray(ref Int32[] Dst) | Copies calling object data to array. |
| └ indexed: void CopyToArray(ref Int32[] Dst, Int32 Index, Int32 Len) | ||
| 4 | void CopyToArray(ref Single[] Dst) | Copies calling object data to array. |
Overload 1: void CopyToArray(ref TCplx[] Dst)
Copies calling object data to array.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Dst | TCplx[] (ref) |
Result: stored in self (calling object)
Copies Length elements from the calling object to Dst array. The size of the Dst array is set to Length or Length/2, if the Complex is false.
Overload 2: void CopyToArray(ref Double[] Dst)
Copies calling object data to array.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Dst | Double[] (ref) |
Result: stored in self (calling object)
Copies Length elements from the calling object to Dst array. The size of the Dst array is set to Length or Length*2, if the Complex is true.
Overload 3: void CopyToArray(ref Int32[] Dst)
Copies calling object data to array.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Dst | Int32[] (ref) |
Result: stored in self (calling object)
Copies Length elements from the calling object to Dst array. The size of the Dst array is set to Length or Length*2, if the Complex is true.
Indexed: void CopyToArray(ref Int32[] Dst, Int32 Index, Int32 Len)
Copies calling object data to array.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Dst | Int32[] (ref) | |
| 2 | Index | Int32 | start index |
| 3 | Len | Int32 | element count |
Result: stored in self (calling object)
Copies Len elements from the calling object starting at Index to Dst array. The size of the Dst array is set to Len or Len*2, if the Complex is true.
Overload 4: void CopyToArray(ref Single[] Dst)
Copies calling object data to array.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Dst | Single[] (ref) |
Result: stored in self (calling object)
Copies Length elements from the calling object to Dst array. The size of the Dst array is set to Length or Length*2, if the Complex is true.