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
Try this:
num1 = num2 = 5;
Note that this won't work in VB.