如何将此下载代码转换为 CodeDOM?
我是使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
完整工作的 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 theCodeTypeReferenceExpression
and the subsequentCodeMethodInvokeExpression
instances to what you need.