Home »

What’s a delegate?

Question ListCategory: C#.NETWhat’s a delegate?
denielshakespeare5 author asked 8 years ago
2 Answers
ethanbrown author answered 8 years ago

A delegate object encapsulates a reference to a method.

adamemliy16 author answered 8 years ago

A delegate is a strongly typed function pointer object that encapsulates a reference to a method, and so the function that needs to be invoked may be called at runtime.

Please login or Register to Submit Answer