Is there any way (just out of curiosity because I came across multiple same-value assignments to multiple variables today) in C# to assign one value to multiple variables at
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