1
Answer

What is the proper declaration of a method which will handle the following event? Class MyClass

sam jame

sam jame

14y
5.4k
1

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)

{
{


Answers (1)