I have a method in my code, let’s call it MethodA, and I know at some point the execution of that method will cause another method, let’s call it MethodB, to execute.
I’d like to know what code execution path is taken to get from MethodA to MethodB.
Is there a Resharper plugin (or something else but Resharper is preferred) that does this?
I believe
ReSharper | Inspect | Incoming Calls(while your cursor is within the name ofMethodBat its declaration) is the closest you’re going to get in ReSharper. It works, but you’ll have to find “MethodA” in the result yourself.