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.
如果我在 Visual C++ 中编写 C++ 代码而不使用任何托管代码,它是否仍在 CLR 上运行?如果是,我如何使用 Visual C++ 编写本机应用程序。有没有什么办法。
“非托管”代码不使用 CLR;它是本机代码。
公共语言运行时 (CLR) 用于执行 .NET 框架程序。这包括与本机 C++ 完全不同的托管 C++。
如果您使用的是 MS Visual Studio,您可以使用 MFC、Win32 或 ATL 项目模板创建使用本机 C++ 编写的应用程序。