13 lines
218 B
C#
Raw Normal View History

// 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;
}