コード例 #1
0
 /// <summary>
 /// Removes the first occurrence of a specific object from the list.
 /// </summary>
 public static bool Remove(SystemGenerics.List <T> list, T item)
 {
     (list as Mock)?.CheckDataRace(true);
     return(list.Remove(item));
 }