Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个用CIL. 比方说,一个名为some_il_code.il保存它的文件。我想编译它来创建一个托管exe程序集。
CIL
some_il_code.il
exe
我该如何做到这一点?
您可以使用ilasm 工具。
ilasm /exe Your.il /deb=opt peverify /md /il Your.exe
ilasm 编译它,peverify验证它。