Tool to extract the sequence of Method or Event calls for .NET?
When i run the application i need to extract the information about the sequence of methods or classes the 开发者_如何学Goapplication touches when any event is performed on the application.
Is any there other tool other than profiler?
Runtime Flow (developed by me) can show the sequence of all method calls.
Not sure what you mean by "profiler"... Above the standard tools shipping with VS, Red Gate ANTS Profiler does a good job. There is a trial. I've used it in the past to help get a clear profile of what is being called when.
Also, if you're looking for a static analysis based on code instead of a runtime analysis, NDepend can help a lot.
精彩评论