Converting .NET App to x86 native code

前端 未结 5 2260
-上瘾入骨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:42

    Not quite sure that there is much you can do besides painstakingly rewrite the application. To ease the already burdening process, you could disassemble the .NET application using something like Reflector (into Microsoft C++), and use that as a base to start and just replace managed C++ references with native ones.

提交回复
热议问题