1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
// CS0149: Method name expected // Line: 17 public class Blah { public delegate int MyDelegate (int i, int j); public int Foo (int i, int j) { return i+j; } public static void Main () { Blah i = new Blah (); MyDelegate del = new MyDelegate (); } }