Does the Microsoft C# compiler (CSC.exe) have an option to output the Intermediate Language files? Kind of like the -S switch does in GCC?
C# compiling to MSIL code
1.9k Views Asked by Icemanind At
2
There are 2 best solutions below
4

Your final executables and DLLs are stored in IL.
To see what I mean, download .NET Reflector, open one of your DLLs or executables, and switch the language to IL. It will also go through translating the IL into C# for you.
You can use ildasm.exe to extract the IL from the assembly compiled by csc.exe.