Can I reflectively wire an event directly to another event in c#? Or is it necessary to code a physical method to raise the one event so that you can reflectively wire it to the other event?
I was thinking I would need to use GetRaiseMethod() so I wouldn't have to do that, but the docs say c# doesn't generate a raise method.
And if what I just asked seems totally off track for what I'm trying to do then please help me get on track. Basically I just want to look up two events reflectively and have one forward to the other.