Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How can I check which methods are called during a .NET application startup? I do not have the source code.

share|improve this question

3 Answers

up vote 5 down vote accepted

If the assembly images are unsigned, the easiest thing to do would be to use the EQATEC Tracer to instrument the assemblies, then start the tracer, start the application, and then stop logging to the tracer. It gives you granular control over what classes and even what methods are traced, so you can focus only on what you're interested in.

share|improve this answer
+1. This will probably solve the posters problem. – Mitch Wheat Nov 22 '09 at 9:34
+1 for recommending EQATEC – RCIX Nov 22 '09 at 9:49

Reflector is the usual tool for inspecting .NET code. But you should check any legal implications of disassembling an application's code.

share|improve this answer
I do not want to dissassemble. Just to know the sequence of methods that are called. – Alex James Nov 22 '09 at 9:21
well, when you disassemble the main routine you will see which methods are called...! – Mitch Wheat Nov 22 '09 at 9:22
I need som kind of debbuging when there is no source code. – Alex James Nov 22 '09 at 9:23
Reflector will show you source code. – Mitch Wheat Nov 22 '09 at 9:24

If the library/ application is a Microsoft one, please note that it is possible to get the .net source code. You can then debug into the corresponding .net code from VS.

Check out the link: http://www.microsoft.com/resources/sharedsource/default.mspx

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.