<?xml version="1.0"?>
<ErrorDocumentation xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <ErrorName>CS0557</ErrorName>
  <Examples>
    <string>// CS0557: Duplicate user-defined conversion in type `Foo'
// Line: 5

public enum Bar
{
	ABar
}


public class Foo
{
	public static explicit operator Foo(Bar the_bar)
	{
		return new Foo();
	}
	public static implicit operator Foo(Bar the_bar)
	{
		return new Foo();
	}
}
</string>
    <string>// CS0557: Duplicate user-defined conversion in type `C'
// Line: 9
class C {
		public static bool operator != (C a, C b) 
		{
			return true;
		}
		
		public static bool operator != (C a, C b) 
		{
			return true;
		}
	
		public static bool operator == (C a, C b)
		{	return false; }		
	}





class X {
	static void Main ()
	{
	}
}
</string>
    <string>// CS0557: Duplicate user-defined conversion in type `SampleClass'
// Line: 5

class SampleClass {
        public static implicit operator bool (SampleClass value) {
                return true;
        }
        
        public static implicit operator bool (SampleClass value) {
                return true;
        }
}
</string>
  </Examples>
</ErrorDocumentation>