Event parameter; “sender as Object”, or “sender as T”?

Don't be extreme. EventHandler(object sender, EventArgs e) has an object sender so that we can use it in many circumstances. But it doesn't mean a strongly-typed sender is evil.

A strongly-typed sender is useful when this delegate is not going to be widely used(like EventHandler ) e.g.

There is a design guideline that specified that an event-handler should have two params: sender (an Object) and e (EventArgs or derived from that).

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