<?xml version="1.0" encoding="us-ascii"?>
<ErrorDocumentation xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
  <ErrorName>CS0149</ErrorName>
  <Examples>
    <string>// 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 ();
	}
}

</string>
    <string>// CS0149: Method name expected
// Line: 10

delegate void D ();

public class MainClass
{
	public static void Main ()
	{
		D delegateInstance = new D (Main, null);
	}
}
</string>
    <string>// CS0149: Method name expected
// Line: 8

delegate void TestDelegate();

public class MainClass
{
	public static void Main ()
	{
		TestDelegate delegateInstance = new TestDelegate ();
	}
}
</string>
  </Examples>
</ErrorDocumentation>