📜  c# .net 使用 url - C# 代码示例

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

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