<?xml version="1.0" encoding="us-ascii"?>
<ErrorDocumentation xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
  <ErrorName>CS0534</ErrorName>
  <Examples>
    <string>// cs0534-2.cs: `DerivedClass' does not implement inherited abstract member `BaseClass.Value.set'
// Line: 8

abstract class BaseClass {
        protected abstract int Value { get; set; }
}

class DerivedClass: BaseClass {
        protected override int Value { get {} }
}
</string>
    <string>// cs0534-3.cs: `MyTestExtended' does not implement inherited abstract member `MyTestAbstract.GetName()'
// Line: 6
// Compiler options: -r:CS0534-3-lib.dll

using System;
public class MyTestExtended : MyTestAbstract
{
	public MyTestExtended() : base()
	{
	}

	public static void Main(string[] args)
	{
		Console.WriteLine("Calling PrintName");
		MyTestExtended test = new MyTestExtended();
		test.PrintName();
		Console.WriteLine("Out of PrintName");
	}
	
}
</string>
    <string>// cs0534-4.cs: `MyTestExtended' does not implement inherited abstract member `MyTestAbstract.GetName()'
// Line: 6
// Compiler options: -r:CS0534-4-lib.dll

using System;
public class MyTestExtended : MyTestAbstract
{
	public MyTestExtended() : base()
	{
	}

	public static void Main(string[] args)
	{
		Console.WriteLine("Calling PrintName");
		MyTestExtended test = new MyTestExtended();
		test.PrintName();
		Console.WriteLine("Out of PrintName");
	}
	
}
</string>
    <string>// CS0534: `C1' does not implement inherited abstract member `A.M(int)'
// Line: 16

public abstract class A
{
	public abstract void M (int i);
}

internal class C0 : A
{
	public override void M (int i)
	{
	}
}

internal class C1 : A
{
}
</string>
    <string>// CS0534: `M' does not implement inherited abstract member `B.BMethod()'
// Line: 5
// Compiler options: -r:CS0534-6-lib.dll

class M : C
{
}
</string>
    <string>// cs0534.cs: `Y' does not implement inherited abstract member `X.myAbstract()'
// Line: 5

abstract class X {
	public abstract void myAbstract ();
}

class Y : X {
static void Main (){}
}
	
</string>
  </Examples>
</ErrorDocumentation>