show/hide this revision's text 2 added 231 characters in body

You

Casting can only be done at compile-time and thus you need to know the types that you wish to cast to at compile-time. A runtime Type (as returned by GetType()) can therefore not be used when casting.

If it is polymorphism you are looking for you could access the Name property through reflectionthough . I wouldn't go that way though just to be able to reuse the event handlerhandlers.

If you want strong typing, a common base class or interface on the two senders is the only way to go.

show/hide this revision's text 1

You could access the Name property through reflection though I wouldn't go that way just to be able to reuse the event handler. If you want strong typing, a common base class or interface on the two senders is the only way to go.