ILDASM

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • puzzlecracker

    ILDASM

    Do you need to provide an executable/dll to see IL code?

    How does it work, and what would I use it for?



    Thanks
  • Duggi

    #2
    Re: ILDASM

    On Sep 27, 11:43 am, puzzlecracker <ironsel2...@gm ail.comwrote:
    Do you need to provide an executable/dll to see IL code?
    >
    How does it work, and  what would I use it for?
    >
    Thanks
    its basically a debugging tool...if you use it properly

    you can learn about language interoperabilit y.. and this tool will be
    helpful,

    -Cnu

    Comment

    • Peter Duniho

      #3
      Re: ILDASM

      On Sat, 27 Sep 2008 11:43:38 -0700, puzzlecracker <ironsel2000@gm ail.com>
      wrote:
      Do you need to provide an executable/dll to see IL code?
      Yes.
      How does it work, and what would I use it for?
      Why not just try it and see?

      It does pretty much what the name implies: it disassembles IL. Because IL
      has a lot more information in it than regular assembly would, you can get
      a lot more information back by disassembling it. But it's still basically
      a form of assembly code (i.e. a primitive, unstructured language). It's
      helpful in seeing what the compiler generates from your own code, in the
      same way that looking at any compiled code would be.

      Pete

      Comment

      Working...