예제 #1
0
 /// <summary>
 /// Removes an integer at a given position from the collection (e.g. in general not the integer you provide as argument is removed (!)).
 /// </summary>
 /// <param name="position"></param>
 public void RemoveAt(int position)
 {
     _list.RemoveAt(position);
 }