English
Appearance
List.Add(item)
List
Adds an element to the end of the list.
T
void
let list = new List<Number>(Number); for(let i = 0; i<3; i++){ list.Add(i); }