I need to hook up all events in an application and trace all information (raising, arguments, etc.).
I found this at Stackoverflow: http://stackoverflow.com/questions/2802774/tracing-all-events-in-vb-net
However, I need a solution that not only writes the called event to console, but calls TraceVerbose with parameters showing sender and eventargs.
I am still working on getting to know dynamic code generation and IL, so I don't have a clue about how to get the code to call a trace method with parameters from the event.
Can anyone tell me how to do this (in VB.NET)?