Beispiel #1
0
 /// <summary>
 /// Retrieves all the elements that match the conditions defined by the specified predicate.
 /// </summary>
 public static SystemGenerics.List <T> FindAll(SystemGenerics.List <T> list, Predicate <T> match)
 {
     (list as Mock)?.CheckDataRace(false);
     return(list.FindAll(match));
 }