using System;
public class TestClass
{
private delegate void TestDelegate();
TestDelegate testDelegate;
public TestClass()
testDelegate = new TestDelegate(MyMethod);
}
public static void Testit()
testDelegate();
private void MyMethod()
Console.WriteLine("Foobar");
public class Program
public static void Main()
Console.WriteLine("Hello World");
TestClass.Testit();