<?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>CS1503</ErrorName>
  <Examples>
    <string>// CS1503:  Argument 1: Cannot convert type `bool' to `int[]'
// Line: 13

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

	public static void Main()
	{
		int i;
		Test (true);
	}
}
</string>
    <string>// CS1503: Argument 1: Cannot convert type `int[]' to `int'
// Line: 12

class C
{
	static void Foo (params int[] i)
	{
	}
	
	public static void Main ()
	{
		Foo (new int[1], 1);
	}
}
</string>
    <string>// CS1503: Argument 1: Cannot convert type `A' to `B'
// Line: 17

class A { }
class B : A { }

class Test
{
	static void Foo (out B b)
	{
		b = new B ();
	}

	static void Main ()
	{
		A a;
		Foo (out a);
	}
}
</string>
    <string>// CS1503: Argument 1: Cannot convert type `int' to `bool'
// Line: 15

class A
{
	public static void Foo (bool test)
	{
	}
}

class B
{
	public static void Main()
	{
		A.Foo (1);
	}
}
</string>
  </Examples>
</ErrorDocumentation>