I want to search for and get a list of all event subscriptions, from any event of any object, in my Visual Studio C# project code. Similar to how you could use "Find All References" or simply Ctrl+F to search for many other kinds of things. Is there a way to achieve this?
All my event subscriptions use the simplified "event += method" syntax, so it would not work to search for the string "new EventHandler" or something similar, and simply searching for "+=" would of course return tons of unrelated arithmetic code.