using System.Threading.Tasks;
if (typeof(T) == typeof(int))
_doSomething = (Action<T>)(object)DoSomethingInt;
public void InvokeDoSomething(T x) => _doSomething(x);
static void DoSomethingInt(int val)
Console.WriteLine("Hello world! The argument was {0}", val);
delegate void DoSomethingDelegate<T>(T val);
public static async Task Main()
var o = new DelegateTest<int>();