如何将此下载代码转换为 CodeDOM?

发布于 2024-09-25 14:11:22 字数 209 浏览 3 评论 0原文

我是使用 codedom 的新手。

有人能告诉我如何将此代码转换为在 C# 中运行吗?

代码:

WebClient webClient = new WebClient();
webClient.DownloadFile("http://mysite.com/myfile.txt", @"c:\myfile.txt");

I'm new to using codedom.

Can someone tell me how to convert this code to be run in C#?

Code:

WebClient webClient = new WebClient();
webClient.DownloadFile("http://mysite.com/myfile.txt", @"c:\myfile.txt");

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

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

发布评论

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

评论(1

浪荡不羁 2024-10-02 14:11:22

完整工作的 CodeDom 代码示例位于:

http:// msdn.microsoft.com/en-us/library/system.codedom.compiler.codedomprovider.aspx

CodeDomExample 的代码复制到新的类文件 (*.cs) 中并修改CodeTypeReferenceExpression 和后续的 CodeMethodInvokeExpression 实例满足您的需要。

A fully working CodeDom code sample is here:

http://msdn.microsoft.com/en-us/library/system.codedom.compiler.codedomprovider.aspx

Copy the code for CodeDomExample into a new class file (*.cs) and modify the CodeTypeReferenceExpression and the subsequent CodeMethodInvokeExpression instances to what you need.

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