I'm in the middle of performing a large refactoring which will involve renaming a lot of events. This will leave our code with a lot of code like this:
thing.NewEventName += thing_OldEventName;
How do I get a list of event handlers with nonstandard names in my code? Should I be thinking about a regex search, or should I be looking at writing something using CodeDom?