format
typescript
List.RemoveAt(index)class: List
description
Removes the element at the specified index from the list.
parameter
| param_name | type | description |
|---|---|---|
| index | number | The index of the element to remove. |
reture
| type | description |
|---|---|
void |
code example
typescript
let list = new List<Number>(Number);
list.AddRange([100, 200, 300]);
// Remove the element at index 1
list.RemoveAt(1);