I have an executable I compiled with C# and I would like to dump the code in assembler code from it, are there any tools to do that?
Also is it possible to also create an executable from the assembler generated?
I have an executable I compiled with C# and I would like to dump
Share
C# doesn’t compile down to assembler level, it compiles into a common intermediate language (CIL), which isn’t the same thing. Compiled C# requires an interpreter, and always will. You can’t just copy pieces of the compiled form into a non .NET program.