<?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>CS1615</ErrorName>
  <Examples>
    <string>// CS1615: Argument `2' should not be passed with the `out' keyword
// Line: 13

public class X
{
	public static void Test (params int[] a)
	{
	}

	public static void Main()
	{
		int i;
		Test (1, out i);
	}
}
</string>
    <string>// cs1615.cs: Argument `1' should not be passed with the `ref' keyword
// Line: 11

class C
{
	public static void test (int i) {}

	public static void Main()
	{
		int i = 1;
		test (ref i);
	}
}
</string>
  </Examples>
</ErrorDocumentation>