How to attach event handler to an event using reflection?
问题 I know about EventInfo.AddEventHandler(...) method which can be used to attach handler to an event. But what should be done if i can not even define proper signature of the event handler, as in, i don't even have reference to the event args expected by the handler? I will explain the problem with the proper code. // Scenario when I have everything available in my solution, Zero Reflection Scenario. internal class SendCommentsManager { public void Customize(IRFQWindowManager rfqWindowManager)