﻿<?xml version="1.0" encoding="utf-8"?>
<ErrorDocumentation xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <ErrorName>CS0466</ErrorName>
  <Examples>
    <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>