using System; Console.WriteLine(Pick(3, 7)); Console.WriteLine(Pick("queued", "sent")); static T Pick<T>(T first, T second) => first;