Running ILDASM from inside Visual Studio .NET

Running ILDASM from inside Visual Studio .NET

Nothing beats ILDASM when it’s time to understand what your VB.NET or C# compiler actually emits. In this case you should prepare a desktop shortcut to ILDASM so that you can run it quickly, and then open a Windows Explorer window on the Bin directory of your project, so that you can easily drag your executable file on ILDASM’s main window. However, there is a better and faster way.

From inside Visual Studio, invoke the Tools-External Tools menu command to bring up a dialog that lets you add a new command to the Tools menu itself. Click on the Add button and type what follows in the dialog fields:

  • Title: ILDASM this program [or whatever you like to use as a caption]
  • Command: C:Program FilesMicrosoft Visual Studio .NETFrameworkSDKBinildasm.exe [or whatever the ILDASM path is]
  • Arguments: $(TargetPath)
  • Use Output window: checked
  • Prompt for arguments: not checked
  • Now you’re ready to use ILDASM to explore the metadata and the IL code of the application you’re working on. Of course, you need to compile it at least once before you can run ILDASM on its executable.

    A very important warning: Remember to close ILDASM before recompiling the application. If you omit to do so, Visual Studio won’t be able to overwrite the executable file. In some cases, you never recover from this error (possibly because of a minor bug in the IDE), and you have to restart Visual Studio to complete a compilation successfully.

    Share the Post:
    Heading photo, Metadata.

    What is Metadata?

    What is metadata? Well, It’s an odd concept to wrap your head around. Metadata is essentially the secondary layer of data that tracks details about the “regular” data. The regular

    XDR solutions

    The Benefits of Using XDR Solutions

    Cybercriminals constantly adapt their strategies, developing newer, more powerful, and intelligent ways to attack your network. Since security professionals must innovate as well, more conventional endpoint detection solutions have evolved

    AI is revolutionizing fraud detection

    How AI is Revolutionizing Fraud Detection

    Artificial intelligence – commonly known as AI – means a form of technology with multiple uses. As a result, it has become extremely valuable to a number of businesses across

    AI innovation

    Companies Leading AI Innovation in 2023

    Artificial intelligence (AI) has been transforming industries and revolutionizing business operations. AI’s potential to enhance efficiency and productivity has become crucial to many businesses. As we move into 2023, several

    data fivetran pricing

    Fivetran Pricing Explained

    One of the biggest trends of the 21st century is the massive surge in analytics. Analytics is the process of utilizing data to drive future decision-making. With so much of

    kubernetes logging

    Kubernetes Logging: What You Need to Know

    Kubernetes from Google is one of the most popular open-source and free container management solutions made to make managing and deploying applications easier. It has a solid architecture that makes