views:

26

answers:

2

When i run the application i need to extract the information about the sequence of methods or classes the application touches when any event is performed on the application.

Is any there other tool other than profiler?

A: 

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.

Jim Leonardo
I have come to assume that when people say "profiler" they're referring to http://www.eqatec.com/tools/profiler/ - but, you know what they say about assuming....
overslacked
A: 

Runtime Flow (developed by me) can show the sequence of all method calls.

Sergey Vlasov