sam jame

sam jame

  • NA
  • 60
  • 0

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

Dec 4 2009 6:22 AM

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)