コード例 #1
0
 /// <summary>
 /// Determines whether the list contains elements that match the
 /// conditions defined by the specified predicate.
 /// </summary>
 public static bool Exists(SystemGenerics.List <T> list, Predicate <T> match)
 {
     (list as Mock)?.CheckDataRace(false);
     return(list.Exists(match));
 }