📜  如何统一下载东西 - C# 代码示例

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

代码示例1
using UnityEngine;
using System;
using System.Net;
using System.IO;

void DownloadFile()
    {
        WebClient client = new WebClient();
        client.DownloadFileAsync(new Uri("Download URL"), "Save path");
    }