quote only work on lambda on net_4_0
[mcs.git] / errors / cs0149-2.cs
blob2eefc5b24a939fb847079880af5e92b0b586af3a
1 // CS0149: Method name expected
2 // Line: 17
4 public class Blah {
6 public delegate int MyDelegate (int i, int j);
8 public int Foo (int i, int j)
10 return i+j;
13 public static void Main ()
15 Blah i = new Blah ();
17 MyDelegate del = new MyDelegate ();