user486523
user486523

Reputation:

ILDasm Visual Studio 2010

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

Upvotes: 3

Views: 2020

Answers (3)

jfs
jfs

Reputation: 16778

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

A brief tutorial may be found here.

Upvotes: 2

Andrew Bezzub
Andrew Bezzub

Reputation: 16032

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

Update: Resharper 6 also supports built in decompiler.

Upvotes: 1

Johannes Rudolph
Johannes Rudolph

Reputation: 35741

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.

Upvotes: 1

Related Questions