<?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>CS1670</ErrorName>
  <Examples>
    <string>// cs1670-2.cs: The `params' modifier is not allowed in anonymous method declaration
// Line: 6

class C
{
	public static explicit operator X (params C[] foo)
	{
		return null;
	}
}
</string>
    <string>// cs1670.cs: The `params' modifier is not allowed in anonymous method declaration
// Line: 10

delegate object D (params object[] args);

class C
{
   public void Test ()
   {
      D d = delegate (params object[] args) {
		return this;
	  };
   }
}
</string>
  </Examples>
</ErrorDocumentation>