Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

List Remove At Index

var ls = new List<int>(){1,2,3,4,5};
ls.RemoveAt(2);
// ls elements 1,2,4,5
public void RemoveAt (int index);
Removes the element at the specified index of the List<T>.
Source by learn.microsoft.com #
 
PREVIOUS NEXT
Tagged: #List #Remove #At #Index
ADD COMMENT
Topic
Name
8+2 =