using static System.Console;
public static void Main()
(var t1_1, var t1_2) = tuple1;
var (t1_3, t1_4) = tuple1;
(int first, int second) swap ((int first, int second) input)
return (input.second, input.first);
(first, second) = swap(tuple1);
var swappedTuple1 = swap(tuple1);
WriteLine(swappedTuple1.first);
WriteLine(swappedTuple1.second);
var (name, count) = new Deconstructable();
public void Deconstruct(out string name, out int count)