SyntaxFix
Write A Post
Hire A Developer
Questions
This is now a thing in C#:
var (a, b, c) = (1, 2, 3);
By doing the above, you have basically declared three variables. a = 1, b = 2 and c = 3. All in a single line.
a = 1
b = 2
c = 3