如何在C++中使用.Net的命名空间?
如何使用 C++ 中的 .NET 框架命名空间?
How do I make use of the .NET framework namespaces from C++?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
如何使用 C++ 中的 .NET 框架命名空间?
How do I make use of the .NET framework namespaces from C++?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(3)
C# 将是
C++ 将是
不要忘记在 C++ 项目属性中引用库。
C# will be
C++ will be
Don't forget to reference the libraries in your C++ project properties.
您可以在托管 C++ 中执行此操作。 使用 #using 指令并像平常一样使用命名空间。
You can do this in managed C++. Use #using directive and use the namespaces like you normally do.
从这里开始: 纯 C++:你好,C++/CLI< /a>
Start Here: Pure C++: Hello, C++/CLI