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>.