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.
假设我正在制作一个新的空白项目。
“CLR 空项目”和“空项目”有什么区别?
我正在使用 Visual Studio Express 2010,但我认为这个问题比一个版本更深入。
谢谢!
如果您创建一个空项目,C++ 项目的初始设置将使得生成的二进制文件将是“本机”代码,具体取决于您选择的处理器。如果您创建一个 CLR 空项目,则生成的二进制文件将是一个 CLR 二进制文件,使用 MSIL 而不是机器语言。根据您将如何使用二进制文件,您需要选择适当的类型。