| AsReadOnly | Cast NativeArray to read-only array. | 
      | AsReadOnlySpan | Exposes NativeArray data as a System.ReadOnlySpan<T>. | 
      | AsSpan | Exposes NativeArray data as a System.Span<T>. | 
      | CopyFrom | Copy all the elements from another NativeArray or managed array of the same length. | 
      | CopyTo | Copy all elements to another NativeArray or managed array of the same length. | 
      | Dispose | Disposes the NativeArray. | 
      | Equals | Compares to NativeArray. | 
      | GetEnumerator | Get enumerator. | 
      | GetHashCode | Returns a hash code for the current instance. | 
      | GetSubArray | Return a view into the array starting at the specified index. | 
      | Reinterpret | Reinterpret the array as having a different data type (type punning). | 
      | ReinterpretLoad | Reinterpret and load data starting at underlying index as a different type. | 
      | ReinterpretStore | Reinterpret and store data starting at underlying index as a different type. | 
      | ToArray | Convert NativeArray to array. |