We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
class Program { public void CallMe() { Console.WriteLine(this?.ToString() ?? "NULL"); } static unsafe void Main() { var a = (Action<Program>)typeof(Program).GetMethod(nameof(CallMe)).CreateDelegate(typeof(Action<Program>)); a(null); } }