Copyright Accelerated Ideas 2007 Legacy Blog Posts | Blog Home | .NET Components

How can I save the output of MSIL Disassembler as html?


1/23/2007

Developers can use the command line tool:

Ildasm.exe

Specifying parameters for Ildasm.exe allows for the creation of various types of output from the component meta data:

Parameters

The following options are available for .exe, .dll, .obj, and .lib files

/output=filename

Creates an output file with the specified filename, rather than displaying the results in a graphical user interface.


/rtf

Produces output in rich text format. Invalid with the /text option.
New in the .NET Framework version 2.0.


/text

Displays the results to the console window, rather than in a graphical user interface or as an output file.


/html

Produces output in HTML format. Valid with the /output option only.
New in the .NET Framework version 2.0.


/?

Displays the command syntax and options for the tool.


< Blog Home