<?xml version="1.0" encoding="us-ascii"?>
<ErrorDocumentation xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <ErrorName>CS0428</ErrorName>
  <Examples>
    <string>// cs0428.cs: Cannot convert method group `a' to non-delegate type `int'. Did you intend to invoke the method?
// Line: 12

class X {
	int a (int a)
	{
		return 0;
	}

	void b ()
	{
		int x = a;
	}
}
</string>
  </Examples>
</ErrorDocumentation>