コード例 #1
0
 /// <summary>
 /// Removes all elements from the list.
 /// </summary>
 public static void Clear(SystemGenerics.List <T> list)
 {
     (list as Mock)?.CheckDataRace(true);
     list.Clear();
 }