Files
linux-packaging-mono/mcs/errors/cs0149.cs

13 lines
191 B
C#
Raw Normal View History

// CS0149: Method name expected
// Line: 8
delegate void TestDelegate();
public class MainClass
{
public static void Main ()
{
TestDelegate delegateInstance = new TestDelegate ();
}
}