<?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>CS1620</ErrorName>
  <Examples>
    <string>// CS1620: Argument `1' must be passed with the `ref' keyword
// Line: 24

public class X
{
	public void Foo (string[] b)
	{
	}
	
	public void Foo (ref string i)
	{
	}
	
	public void Foo (int i)
	{
	}
}

class D
{
	static void Main ()
	{
		X x = null;
		x.Foo ("hola");
	}
}

</string>
    <string>// cs1620.cs: Argument `1' must be passed with the `out' keyword
// Line: 13

class C
{
	public static void test (out int i)
	{
		i = 5;
	}

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