| 
                       | 
                      Description | 
                    
                  
      | AsReadOnly | Casts a NativeArray<T0> to read-only array. | 
      | AsReadOnlySpan | Exposes NativeArray<T0> data as a System.ReadOnlySpan<T>. | 
      | AsSpan | Exposes NativeArray<T0> data as a System.Span<T>. | 
      | CopyFrom | Copies all the elements from a NativeArray<T0> or a managed array of the same length. | 
      | CopyTo | Copies all the elements to another NativeArray<T0> or a managed array of the same length. | 
      | Dispose | Disposes a NativeArray<T0>. | 
      | Equals | Compares two NativeArray<T0> instances. | 
      | GetEnumerator | Gets an enumerator. | 
      | GetHashCode | Gets a hash code for the current instance. | 
      | GetSubArray | Gets a view into an array starting at the specified index. | 
      | Reinterpret | Reinterpret a NativeArray<T0> with 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 a NativeArray<T0> to an array. |