Discussion :: C#.Net MCQs
-
Which among the following is the correct statement about delegate declaration ?delegate void del(int i);
A.
On declaring the delegate, a class called del is created
|
B.
the del class is derived from the MulticastDelegate class
|
C.
the del class will contain a one argument constructor and an invoke() method
|
D.
all of the mentioned
|
Answer : Option D
Explanation :
Be The First To Comment