using System.Collections.Generic;
using System.Threading.Tasks;
public static async Task<int> SomeAsync()
return await Task.Run(() => 2);
public static void Main()
List<(int, string)> lst = new()
int foo = await SomeAsync();
return a > 99 ? b : null;