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