How to generate IL source code with csc (C# compil

2019-02-18 06:49发布

问题:

gcc has an option of -s to generate assembly source code. Does csc (MS C# compiler) or dmcs (mono C# compiler) have equivalence? I mean do those compilers provide an option to generate IL source code that can be read not the execution binary?

回答1:

It's very easy to get to the IL: just use ildasm. The /text option prints the result to the console, which you can divert to a file.



回答2:

A C# compiler always generates IL (CIL in the case for .net), because thats the way .net works, but if you mean you want to precompile this in to machine code to speed up execution you can use ngen.exe (see HERE).

If you just want to see the generated IL you can use ILSpy.



标签: c# mono il csc