Documentation

Unity Engine


User Manual

Script Reference

Unity Engine


this[]

Provides read-only access to NativeArray<T>.ReadOnly elements by index.
Read time 1 minuteLast updated 6 days ago

Definition

this[int]

public T this[int index] { get; }

Parameters

index

Returns

Type

Description

T

Remarks

The elements of the array are returned by value, not by reference. If you need the reference, use the ReadOnly.UnsafeElementAt(int) method.