📜  如何使用 c# 代码示例从 url 下载文件

📅  最后修改于: 2022-03-11 14:48:45.511000             🧑  作者: Mango

代码示例1
using (var client = new WebClient())
{
    client.DownloadFile("http://example.com/file/song/a.mpeg", "a.mpeg");
}