Represents a NativeArray<T0> interface constrained to read-only operations.
| Description | |
|---|---|
| IsCreated | Indicates that a ReadOnly has an allocated memory buffer. | 
| Length | Provides the number of elements in the ReadOnly. | 
| this[int] | Provides read-only access to ReadOnly elements by index. | 
| Description | |
|---|---|
| AsReadOnlySpan | Exposes ReadOnly data as a System.ReadOnlySpan<T>. | 
| CopyTo | Copies all elements to a ReadOnly or managed array of the same length. | 
| GetEnumerator | Gets an enumerator. | 
| Reinterpret | Reinterpret a ReadOnly with a different data type (type punning). | 
| ToArray | Convert the data in a ReadOnly to a managed array. | 
| UnsafeElementAt | Provides read-only access to ReadOnly elements by index. |