Deconstruction in lambda parameters
Summary
Lambda parameters may be deconstructed within the parameter list of the lambda expression:
Action<(int, int)> action = ((a, b)) => { };
Action<(int, int)> action = ((int a, int _)) => { };
Action<(int, (int, int))> action = ((a, (b, _))) => { };
Design meetings