Which Among The Following Is The Correct Statement About #603
Which among the following is the correct statement about delegate declaration?</p> <pre><code class="language-text">delegate void del(int i);</code></pre>
This multiple choice question (MCQ) is related to the book/course gs gs108 CSharp. It can also be found in gs gs108 Delegates, Generics and LINQ - Fundamental of Delegates - Quiz No.1.
Which among the following is the correct statement about delegate declaration?
delegate void del(int i);
on declaring the delegate, a class called del is created
the del class is derived from the MulticastDelegate class
the del class will contain a one argument constructor and an invoke() method
all of the mentioned