CopyTo
Copies all the elements to another NativeArray<T> or a managed array of the same length.
Read time 1 minuteLast updated 6 days ago
Definition
- Type: Method
- Namespace: Unity.Collections
- Assembly: UnityEngine.ManagedKernelModule
CopyTo(`0[])
Copies all the elements to another NativeArray<T> or a managed array of the same length.
public void CopyTo(T[] array)
Parameters
The array to copy elements to.
CopyTo(NativeArray<T>)
Copies all the elements to another NativeArray<T> or a managed array of the same length.
public void CopyTo(NativeArray<T> array)
Parameters
The array to copy elements to.