<?xml version="1.0"?>
<ErrorDocumentation xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <ErrorName>CS0081</ErrorName>
  <Examples>
    <string>// CS0081: Type parameter declaration must be an identifier not a type
// Line: 4

class D&lt;string&gt;
{
}
</string>
    <string>// CS0081: Type parameter declaration must be an identifier not a type
// Line: 4

partial class A&lt;T, bool&gt;
{
}

partial class A&lt;T, O&gt;
{
}
</string>
    <string>// CS0081: Type parameter declaration must be an identifier not a type
// Line: 6

class D
{
	public void Foo&lt;int&gt;()
	{
	}
}
</string>
  </Examples>
</ErrorDocumentation>