Reputation: 12053
I use Visual Studio 2012 and I code there simple console app. Does anyone know how get MSIL code from my C# code?
I would like to see it after compilation without ILDASM, it's possible to automaticate this process
Upvotes: 0
Views: 153
Reputation: 236318
Your output exe
file will contain MSIL code. You can inspect it with ildasm.
I think it will be useful for you to read about Compiling to MSIL on msdn.
Upvotes: 6