RemoveAt(int)
Removes the element at an index, shifting everything above it down by one. Decrements the length by 1.
Read time 1 minuteLast updated 13 days ago
Definition
- Type: Method
- Namespace: Unity.Collections
- Assembly: UnityEngine.ManagedKernelModule
public void RemoveAt(int index)
Parameters
The index of the item to remove.
Remarks
If you don't care about preserving the order of the elements, NativeList<T>.RemoveAtSwapBack is a more efficient way to remove elements.