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