<?xml version="1.0"?>
<ErrorDocumentation xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <ErrorName>CS0035</ErrorName>
  <Examples>
    <string>// CS0035: Operator `++' is ambiguous on an operand of type `MyType'
// Line: 31

public class MyType
{
	public static implicit operator float (MyType v)
	{
		return 0;
	}

	public static implicit operator decimal (MyType v)
	{
		return 0;
	}

	public static implicit operator MyType (float v)
	{
		return null;
	}

	public static implicit operator MyType (decimal v)
	{
		return null;
	}
}

class Test
{
	static void test (MyType x)
	{
		x++;
	}
}</string>
    <string>// CS0035: Operator `-' is ambiguous on an operand of type `A'
// Line: 22

class A
{
	public static implicit operator float(A x)
	{
		return 0;
	}

	public static implicit operator decimal(A x)
	{
		return 0;
	}
}

class M
{
	static void Main()
	{
		A a = new A ();
		float f = -a;  
	}
}
</string>
  </Examples>
</ErrorDocumentation>