<?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>CS0533</ErrorName>
  <Examples>
    <string>// CS0533: `B.MyEvent' hides inherited abstract member `A.MyEvent'
// Line: 11

using System;

abstract class A {
	public abstract event EventHandler MyEvent;
}

class B : A {
	public new event EventHandler MyEvent;
}
</string>
    <string>// cs0533.cs: `DerivedClass.Foo()' hides inherited abstract member `BaseClass.Foo()'
// Line: 9

abstract public class BaseClass {
        abstract protected void Foo ();
}

abstract class DerivedClass: BaseClass {
        public new void Foo () {}
		public static void Main () {}
}

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