Given the delegate declaration delegate void PerformsSomeTask(int arg1, double arg2); which of the following statements would appear
Question:
Given the delegate declaration delegate void PerformsSomeTask(int arg1, double arg2);
which of the following statements would appear to create a delegate instance of PerformsSomeTask( ) with no syntax errors?
a. PerformsSomeTask task1 =
new PerformsSomeTask (CalculateThis);
b. PerformsSomeTask task1 =
new PerformsSomeTask (CalculateThis( ));
c. PerformsSomeTask( ) task1 =
new PerformsSomeTask (CalculateThis( ));
d. PerformsSomeTask( ) task1 = new PerformsSomeTask
(CalculateThis(int, double));
e. PerformsSomeTask task1 = new PerformsSomeTask
(CalculateThis (int arg1, double arg2));
Fantastic news! We've Found the answer you've been seeking!
Step by Step Answer:
Related Book For
C# Programming From Problem Analysis To Program Design
ISBN: 9781285096261
4th Edition
Authors: Barbara Doyle
Question Posted: