using System;
public class Program
{
public static void Main()
string a = "foo", b = "bar";
Console.WriteLine($"a: {a}, b: {b}");
(a, b) = (b, a);
}