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.
c程序编译生成的.exe文件和vb程序编译生成的.exe文件有什么区别。哪个 .exe 文件是独立于平台的(只要平台是 .NET)?
C 程序文件主要编译为本机机器代码,并且是特定于平台的。但是,VB.NET 编译为 .NET MSIL 代码,然后可以在 .NET 虚拟机上运行。
话虽如此,您可以为 C 编写自己的编译器以编译为 MSIL 或查看 C++/CLR。