// cs1533 : Invoke cannot be called directly on a delegate // Line : 11 public class TestClass { delegate void OneDelegate (int i); static void Main() { OneDelegate d = new OneDelegate (TestMethod); d.Invoke (1); } public static void TestMethod (int i) { } }