0 votes
in C Sharp by
What you mean by delegate in C#?

1 Answer

0 votes
by
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.
...