예제 #1
0
 /// <summary>
 /// Removes a range of elements from the list.
 /// </summary>
 public static void RemoveRange(SystemGenerics.List <T> list, int index, int count)
 {
     (list as Mock)?.CheckDataRace(true);
     list.RemoveRange(index, count);
 }