What is the proper declaration of a method which will handle the following event?
Class MyClass
{
Public event EventHandler<MyArgs>MyEvent; }
a.public void A_MyEvent(object sender,MyArgs e)
{ {
b.public void A_MyEvent(object sender,EventArgs e)
c.public void A_MyEvent(MyArgs e)
d.public void A_MyEvent(MyClass sender,EventArgs e)