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
I use Visual Studio 2012 and I code there simple console app. Does anyone
Share
Your output
exefile 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.