21 lines
267 B
C#
21 lines
267 B
C#
|
// 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 ();
|
||
|
}
|
||
|
}
|
||
|
|