Legacy Documentation: Version 2018.2 (Go to current version)
LanguageEnglish
  • C#

NativeArray<T0>

struct in Unity.Collections

/

Implemented in:UnityEngine.CoreModule

Description

A NativeArray exposes a buffer of native memory to managed code, making it possible to share data between managed and native.

Properties

IsCreatedIndicates that the NativeArray has an allocated memory buffer.
LengthNumber of elements in the NativeArray.
this[int]Access NativeArray elements by index. Notice that structs are returned by value and not by reference.

Constructors

NativeArray_1Create NativeArray.

Public Methods

CopyFromCopy all the elements from another NativeArray or managed array of the same length.
CopyToCopy all elements to another NativeArray or managed array of the same length.
DisposeDispose array.
GetEnumeratorGet enumerator.
ToArrayConvert NativeArray to array.

Did you find this page useful? Please give it a rating: