English
Appearance
List.Clear()
List
Clears all elements in the list.
void
let list = new List<Number>(Number); for(let i = 0; i<3; i++){ list.Add(i); } //Clear the elements in the list list.Clear();