1
Answer

why we cannot able to overload a delegate in c#

why we can't overload a delegate?
 
public delegate int mydelegate(int first,int second);   //delegate declaration
can i overload the above delegate?

Answers (1)