<?xml version="1.0"?>
<ErrorDocumentation xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <ErrorName>CS0428</ErrorName>
  <Examples>
    <string>// CS0428: Cannot convert method group `Count' to non-delegate type `int'. Consider using parentheses to invoke the method
// Line: 11

using System.Linq;

public class A
{
	public A ()
	{
		string [] test = new string [5];
		A [] array = new A [test.Count];
	}
}
</string>
    <string>// CS0428: Cannot convert method group `a' to non-delegate type `int'. Consider using parentheses to invoke the method
// Line: 12

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

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