Example #1
0
 /// <summary>
 /// Removes the element at the specified index of the list.
 /// </summary>
 public static void RemoveAt(SystemGenerics.List <T> list, int index)
 {
     (list as Mock)?.CheckDataRace(true);
     list.RemoveAt(index);
 }