Login
Remember
Register
Ask a Question
What you mean by delegate in C#?
0
votes
asked
Oct 18, 2019
in
C Sharp
by
Robin
What you mean by delegate in C#?
delegate-in-c#
c#-delegate
Please
log in
or
register
to answer this question.
1
Answer
0
votes
answered
Oct 18, 2019
by
rajeshsharma
Delegates are type safe pointers unlike function pointers as in C++. Delegate is used to represent the reference of the methods of some return type and parameters.
...