MCQOPTIONS
Saved Bookmarks
| 1. |
Which of the following are the correct ways to declare a delegate for calling the function func() defined in the sample class given below? |
| A. | delegate d(int i, Single j); |
| B. | delegate void d(int, Single); |
| C. | delegate int d(int i, Single j); |
| D. | delegate void (int i, Single j); |
| Answer» D. delegate void (int i, Single j); | |