<?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>CS0231</ErrorName>
  <Examples>
    <string>// cs0231-2.cs: A params parameter must be the last parameter in a formal parameter list
// Line: 5
class Test
{
	void Foo (params object[] o, params bool[] b) {}
}

</string>
    <string>// cs0231-3.cs: A params parameter must be the last parameter in a formal parameter list
// Line: 5
class Test
{
        void Foo (int i, params object[] o, bool b) {}
}

</string>
    <string>// cs0231-4.cs: A params parameter must be the last parameter in a formal parameter list
// Line: 5
class Test
{
	void Foo (int i, params object[] o, params bool[] b) {}
}

</string>
    <string>// cs0231.cs: A params parameter must be the last parameter in a formal parameter list
// Line: 5
class Test
{
        void Foo (params object[] o, bool b) {}
}

</string>
  </Examples>
</ErrorDocumentation>