<?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>CS0081</ErrorName>
  <Examples>
    <string>// gcs0081-2.cs: Type parameter declaration must be an identifier not a type
// Line: 6

class D
{
	public void Foo&lt;int&gt;()
	{
	}
}
</string>
    <string>// gcs0081.cs: 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>// gcs0081.cs: Type parameter declaration must be an identifier not a type
// Line: 4

class D&lt;string&gt;
{
}
</string>
  </Examples>
</ErrorDocumentation>