Question: Which of the following is the correct way to call the function MyFun() of the Sample class given below?

Options

A : delegate void del( int i); Sample s = new Sample(); deld = new del( ref s.MyFun); d( 10 );

B : delegate int del( int i); Sample s = new Sample(.); del = new delegate ( ref MyFun); del( 10 );

C : Sample s = new Sample(); delegate void del = new delegate ( ref MyFun); del( 10 );

D : delegate int del( int i); del d; Sample s = new Sample(); d = new del( ref s.MyFun); d( 10 );

Click to view Correct Answer

Exam Quiz App on Google Play

Previous || Next

Delegates - General Questions more questions

Which of the following statements are correct about datatypes in....

Which of the following is the correct default value of....

In which of the following areas are delegates commonly used?

Which of the following is the necessary condition for implementing....

Which of the following statements are correct about the delegate....

Which of the following is the correct way to call....

Which of the following statements are correct about a delegate?

Which of the following statements are correct about delegates?

Which of the following statements are correct about delegates?

Which of the following are the correct ways to declare....

Attributes - General Questions more Online Exam Quiz

Attributes - General Questions

Classes and Objects - General Questions

Collection Classes - General Questions

Constructors - General Questions

Datatypes - General Questions

.NET Framework - General Questions

Enumerations - General Questions

Exception Handling - General Questions

Functions and Subroutines - General Questions