using static System.Console;
var a = 10;
var b = 20;
(a, b) = (b, a);
WriteLine(a); // 20
WriteLine(b); // 10