Start with code:
(int x, int y) t = default;
Console.WriteLine(t.x + t.y);
Use 'Deconstruct variable declaration' on 't'. It produces the following code:
(int x, int y) = default;
Console.WriteLine(x + y);
This is not allowed because 'default' is not deconstructable to a tuple.
Start with code:
Use 'Deconstruct variable declaration' on 't'. It produces the following code:
This is not allowed because 'default' is not deconstructable to a tuple.