I agree with Raymond. Simple sample with a wildcard
// In variable patterns (when you don't care about the value) var (x, _, z) = (1, 2, 3); // x=1, z=3, ignore the second value