Converting .NET App to x86 native code

前端 未结 5 2261
-上瘾入骨i
-上瘾入骨i 2020-12-05 05:10

There\'s a program written entirely in C# that targets .NET Framework 2.0. Is there a way I could somehow compile (translate) managed EXE to a native one so it could be .NET

5条回答
  •  一整个雨季
    2020-12-05 05:56

    There is a project called CrossNet that parses .Net Assemblies and generates unmanaged C++ code, that can be compiled in any standard compiler.

提交回复
热议问题