Page 1 of 1

Which among the following is the correct statement about delegate declaration?

Posted: Wed Jul 13, 2022 7:57 pm
by answerhappygod
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