<?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>CS0536</ErrorName>
  <Examples>
    <string>// cs0536-2.cs: `B' does not implement interface member `I.Test(int)'. `B.Test(int)' is either static, not public, or has the wrong return type
// Line: 11

interface I
{
	void Test (int a);
}

class B: I
{
	public static void Test (int a) {}
}
</string>
    <string>// cs0536.cs: `MyTest' does not implement interface member `System.ICloneable.Clone()'. `MyTest.Clone()' is either static, not public, or has the wrong return type
// Line: 4
using System;
public class MyTest : ICloneable {
	object Clone(){
		return MemberwiseClone();
	}

	static void Main ()
	{
	}
}

</string>
  </Examples>
</ErrorDocumentation>