0 votes
in C Sharp by
What is delegate in C#?

1 Answer

0 votes
by

A delegate in C# is an object that holds the reference to a method. It is like function pointer in C++.

...