I have an abstract class which has an event (abstract). I do not need actually this event in my implementation. When I dont use it in my implementation, it gives well warning, which I dont want to have.. Is there any c# predefine annotation like [unused] or [ignore] to prevent getting warning?
public abstract class Abc
{
...
public abstract event EventHandler<MsgEventHandler>
}
public MyClass: Abc
{
public override event EventHandler<MsgEventHandler> MesReceived;
//constructers
//methodes
//etc
}