public static void Main()
(string a, string b) = F();
(string a, string b) ab = F();
Console.WriteLine($"a: {a} b: {b} ab: {ab}");
(string d, string e) = c;
(string a, string b) f = c;
Console.WriteLine($"d: {d} e: {e} f: {f}");
(object c, object d) g = F();
(double x, double y) t = G();
public static (string a, string b) F()
public static (int x, int y) G()
public void Deconstruct(out String a, out String b)