0 votes
in C Sharp by
What are the differences between events and delegates in C#?

1 Answer

0 votes
by

Main difference between event and delegate is event will provide one more of encapsulation over delegates. So when you are using events destination will listen to it but delegates are naked, which works in subscriber/destination model.

Related questions

0 votes
asked Oct 18, 2019 in C Sharp by Robin
+1 vote
asked May 6, 2020 in C Sharp by SakshiSharma
...