<?xml version="1.0"?>
<ErrorDocumentation xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <ErrorName>CS0737</ErrorName>
  <Examples>
    <string>// CS0737: `MySubClass' does not implement interface member `System.ICloneable.Clone()' and the best implementing candidate `MyTest.Clone()' is not public
// Line: 6

using System;

public class MySubClass : MyTest, ICloneable
{
}

public class MyTest
{
	internal object Clone ()
	{
		return MemberwiseClone ();
	}
}
</string>
    <string>// CS0737: `MyTest' does not implement interface member `System.ICloneable.Clone()' and the best implementing candidate `MyTest.Clone()' is not public
// Line: 6

using System;

public class MyTest : ICloneable
{
	object Clone()
	{
		return MemberwiseClone();
	}
}

</string>
    <string>// CS0737: `MySubClass' does not implement interface member `I.Foo.set' and the best implementing candidate `MyTest.Foo.set' is not public
// Line: 6

using System;

interface I
{
	int Foo { get; set; }
}

public class MySubClass : MyTest, I
{
}

public class MyTest
{
	public int Foo
	{
		get { return 1; }
		protected set { }
	}
}
</string>
  </Examples>
</ErrorDocumentation>