如何编译 c++ 使用 .NET Framework 库的程序
我想仅在命令提示符下使用 .NETFRAMEWORK 库编译我的 C++ 程序。我该怎么做?
i want comile a my c++ program using .NETFRAMEWORK libraries only at command prompt.how can i do this ??
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
从 Microsoft 下载免费的 Visual C++ Express 工具并使用 C++/CLI 语言(基于C++,但允许访问整个 .Net Framework)并从那里开始。
Download the free Visual C++ Express tools from Microsoft and use the C++/CLI language (based on C++ but allows access to the whole .Net Framework) and go from there.
基本上,您正在谈论 Visual C++ 。 至于使用命令提示符,一旦您有了一个可以工作的程序,您应该能够使用类似以下内容的内容:
与任何其他相关选项,然后启动并运行。 如果这没有帮助,请提出更具体的问题。
Basically, you're talking about Visual C++. As for using the command prompt, once you have a working program you should just be able to use something like:
with any other relevant options, and be up and running. If that doesn't help, give a more specific question.