如何编译 c++ 使用 .NET Framework 库的程序

发布于 2024-07-19 09:05:54 字数 53 浏览 5 评论 0原文

我想仅在命令提示符下使用 .NETFRAMEWORK 库编译我的 C++ 程序。我该怎么做?

i want comile a my c++ program using .NETFRAMEWORK libraries only at command prompt.how can i do this ??

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

百善笑为先 2024-07-26 09:05:54

从 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.

断肠人 2024-07-26 09:05:54

基本上,您正在谈论 Visual C++ 。 至于使用命令提示符,一旦您有了一个可以工作的程序,您应该能够使用类似以下内容的内容:

cl MyProgram.cs /clr

与任何其他相关选项,然后启动并运行。 如果这没有帮助,请提出更具体的问题。

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:

cl MyProgram.cs /clr

with any other relevant options, and be up and running. If that doesn't help, give a more specific question.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文