Is there a convenient method or tool available which will do the following for me from within visual studio 2010.

Fire up ILDasm Load a current assembly from within Visual Studio within ILDasm.

As opposed to me firing up a visual studio command prompt Fire up Ildasm navigating to the bin folder of the assembly I wish to view.

If there isn't something available to do this are there any tools out there which would help?

Cheers

link|improve this question

feedback

3 Answers

up vote 2 down vote accepted

Reflector can be plugged into Visual Studio. Also it supports multiple languages, not only IL.

Update: Resharper 6 also supports built in decompiler.

link|improve this answer
Can I view the CIL using reflector? My understanding is it shows you the source C# code or language specific code? – Gary Thorpe Oct 29 '10 at 12:58
It shows IL too. – Andrew Bezzub Oct 29 '10 at 12:59
How do I get it to show that? – Gary Thorpe Oct 29 '10 at 13:02
Ahh found it in the dropdown in reflector. Cheers for that! – Gary Thorpe Oct 29 '10 at 13:06
Going to go with this as the answer. Was not aware of the built in ILDasm disassembler. Thanks again! – Gary Thorpe Oct 29 '10 at 13:12
feedback

You can get a copy of TestDriven.Net which will provide that sort of dialog for opening up Reflector.

If you really need ILDasm (and yes, there are good reasons for that too) from the context menu I guess you'll need to write that yourself.

link|improve this answer
Looks like Reflector Pro does the same integration (not sure when they did it or whether its restricted to the Pro Ed) – Ruben Bartelink Oct 29 '10 at 15:48
1  
@Ruben: Looks like they have it in the free ed too red-gate.com/products/reflector/features.htm. Now it gets messy, TD.NET does Reflector integration, NDepend does it and Reflector itself. Which one am I using? Hell I don't know :-) – Johannes Rudolph Oct 29 '10 at 20:01
feedback

I think you can do this using Tools>External Tools. Setup the necessary parameters for ILDasm

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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