MVP, Winforms - EventHandlers or Delegates?

You're pattern is essentially the same as using events, with a key difference. Events don't expose the underlying delegate (ModelDataChangedCallback in your example). Exposing this is bad practice as other code can clear the invocation list for example.

An event will have an underlying delegate that can be added or or removed from, but never cleared from outside the scope of the class.

I cant really gove you an answer,but what I can give you is a way to a solution, that is you have to find the anglde that you relate to or peaks your interest. A good paper is one that people get drawn into because it reaches them ln some way.As for me WW11 to me, I think of the holocaust and the effect it had on the survivors, their families and those who stood by and did nothing until it was too late.

Related Questions