using System;
public class Program
{
public static void Main()
var result = GetTuple();
Console.WriteLine($"{result.PropertyA}-{result.PropertyB}");
}
private static (string PropertyA, string PropertyB) GetTuple()
return ("Hello", "World");