using System;
public class Program
{
public static void Main()
(int id, string desc) DoIt()
return (3, "wut?");
}
var (someRandomName, someOtherRandomName) = DoIt();
Console.WriteLine($"{someRandomName}, {someOtherRandomName}");