<?xml version="1.0"?>
<ErrorDocumentation xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <ErrorName>CS1739</ErrorName>
  <Examples>
    <string>// CS1739: The best overloaded method match for `System.Delegate.DynamicInvoke(params object[])' does not contain a parameter named `b'
// Line: 18

using System;

class C
{
	delegate int IntDelegate (int a);
	
	static int TestInt (int u)
	{
		return 29;
	}
	
	public static void Main ()
	{
		var del = new IntDelegate (TestInt);
		del.DynamicInvoke (b : 7);
	}
}
</string>
    <string>// CS1739: The best overloaded method match for `A.this[int]' does not contain a parameter named `value'
// Line: 17

class A
{
	public int this [int id] {
		set {
		}
	}
}

class B
{
	public static void Main ()
	{
		A a = new A ();
		a [value:1] = 9;
	}
}
</string>
    <string>// CS1739: The best overloaded method match for `C.Foo(int, int)' does not contain a parameter named `b'
// Line: 12

class C
{
	static void Foo (int x, int y)
	{
	}
	
	public static void Main ()
	{
		Foo (1, b : 2);
	}
}
</string>
    <string>// CS1739: The best overloaded method match for `Program.M(int, int, int)' does not contain a parameter named `whatever'
// Line: 8

public class Program
{
	public static void Main ()
	{
		M (z: 1, whatever: 0);
	}

	void M (int x = 0, int y = 0, int z = 0)
	{
	}
}
</string>
  </Examples>
</ErrorDocumentation>