Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

C# Delegates Real World Usage [duplicate]

Tags:

c#

.net

asp.net

I've previously asked a question of about Delegates does anyone have a must have scenario where I would have to use a delegate? How does this improve my C# code?

Just as many scenarios I use it in I've always seem to be able to program around it.

like image 973
sleath Avatar asked Oct 15 '09 15:10

sleath


1 Answers

Whenever you're using a Strategy Pattern or an Observer Pattern, delegates make your work much easier than using interfaces.

like image 141
Yuriy Faktorovich Avatar answered Oct 05 '22 06:10

Yuriy Faktorovich