<?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>CS0466</ErrorName>
  <Examples>
    <string>// cs0466: `Base.I.this[params int[]].set': the explicit interface implementation cannot introduce the params modifier
// Line: 10

interface I
{
	int this [int[] p] { set; }
}
class Base : I
{
	int I.this [params int[] p] { 
		set {
		}
	}
}
</string>
    <string>// cs0466.cs:  `Base.I.M(params int[])': the explicit interface implementation cannot introduce the params modifier
// Line: 10

interface I
{
	void M(int[] values);
}
class Base : I
{
	void I.M(params int[] values) {}
}</string>
  </Examples>
</ErrorDocumentation>