Ejemplo n.º 1
0
 public static int OrDefault(this Match match, int DefaultInt) => int.TryParse(match.OrDefault(), out var v) ? v : DefaultInt;