智能感知:“#using”需要启用 C++/CLI
#using <mscorlib.dll>
#using <System.dll>
using namespace System;
using namespace System::Text;
using namespace System::IO;
using namespace System::Net;
using namespace System::Net::Sockets;
using namespace System::Collections;
错误:IntelliSense:“#using”需要启用 C++/CLI...
如何解决此问题!?
#using <mscorlib.dll>
#using <System.dll>
using namespace System;
using namespace System::Text;
using namespace System::IO;
using namespace System::Net;
using namespace System::Net::Sockets;
using namespace System::Collections;
Errors: IntelliSense: "#using" requires C++/CLI to be enabled....
how to fix this prob!?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
您的项目设置错误。特别是配置属性、常规、公共语言运行时支持。
通过在 CLR 节点中选择一个项目模板来启动您的项目,从而陷入成功的深渊。
Your project settings are wrong. Specifically Configuration Properties, General, Common Language Runtime support.
Fall in the pit of success by starting your project by picking one of the project templates in the CLR node.
选择
项目
->菜单栏中的属性
。在“项目属性”窗口中的“配置”下“属性”->常规
,确保将公共语言运行时支持
设置为公共语言运行时支持(/clr)
在VS2019中,步骤如下:
2/
项目
3/
属性
4/
配置属性
5/
高级
6/
公共语言运行时支持
将其更改为 < code>Common Language Runtime Support(/clr)Choose
Project
->Properties
from the menu bar. In theProject properties
window, under ConfigurationProperties
->General
, make sure thatCommon Language Runtime Support
is set toCommon Language Runtime Support (/clr)
In VS2019 it the steps would be :
1/ Right click on the project
2/
Project
3/
Properties
4/
Configuration Properties
5/
Advanced
6/
Common Language Runtime Support
change it toCommon Language Runtime Support(/clr)
在项目设置中启用它(右键单击项目 -> 设置),第一个选项卡应提供该选项。
Enable it in your project settings (right click on the projet -> settings) the first tab should provide the option.
MSDN 有一个很好的示例来测试 Parse 与 tryParse 的性能差异:
秒表示例
The MSDN has a nice example for testing the difference in performance, Parse vs tryParse:
Stopwatch Example
如果您使用Visual Studio,您可能需要预先进行一些安装。要安装它们,请从 Windows“开始”菜单打开 Visual Studio 安装程序。确保选中使用 C++ 进行桌面开发磁贴,并在可选组件部分中选中C++/CLI 支持。
If you are using Visual Studio, you might have to do some installations pre-hand. To install those, open the Visual Studio Installer from the Windows Start menu. Make sure that the Desktop development with C++ tile is checked, and in the Optional components section, also check C++/CLI Support.