问题
I want to figure out what methods are being called in what order when I build and run an ASP.NET web form application.
The context is that I'm trying to decipher the architecture of the code base I'm working on, and its not clear where the program begins. Using breakpoints randomly has been helpful but does not give the entire picture.
Is something like this possible?
回答1:
You can use my Runtime Flow extension to view entire method calls hierarchy of an ASP.NET applicaton.
来源:https://stackoverflow.com/questions/53489396/how-to-view-entire-call-stack-hierarchy-without-breakpoints-visual-studio-2015