using System;
public class Program
{
class Foo
public void Method()
Console.WriteLine("Does this == null? " + (this == null));
}
public static void Main()
((Action<Foo>)Delegate.CreateDelegate(typeof(Action<Foo>), null, typeof(Foo).GetMethod("Method")))(null);