Ejemplo n.º 1
0
 public static bool Test <T, TPredicate>(
     List2D <T> list, TPredicate match)
     where TPredicate : struct, IPredicate <T>
 => list.Exists(match);
Ejemplo n.º 2
0
 public static bool Test <T>(List2D <T> list, Predicate <T> match)
 => list.Exists(match);