views:

229

answers:

3

Lately I've found myself constantly running ILDASM to study the MSIL output of my programs.

Are there any utilities to streamline this? Ideally, it would be nice to select some source code and have it compile, disassemble and emit the selected C# code in MSIL.

Anyone know of such a thing?

+6  A: 
Spence
Just wondering, what software was used for recording?
Timur Fanshteyn
@Timur Fanshteyn, Camtasia is the most popular one that I know of.
Simucal
It's not my recording, i've taken it from the reflector website, just the picture was quite appropriate for the question.
Spence
+1  A: 

Open the .dll in reflector, select any function in any class, and select IL as the language to decompile to. I don't think you're looking for a level more granular than that.

DavidN
+2  A: 

You could use testdriven.net an awesome unit testing plugin that gives you the ability to right click on any member and view it in reflector.

Sam Saffron