Home » C# Programming » Delegates

Which of the following are the correct ways to declare a delegate for calling the function func() defined in the sample class given below? class Sample { public int func(int i, Single j) { /* Add code here. */ } }

Correct Answer: delegate int d(int i, Single j);

← Previous Question Next Question→

Discussion & Comments

No comments yet. Be the first to comment!
Join Discussion