mardi 21 février 2023

C# function to download PDF

 public void DownloadPDF(string url, string filename)

{

    using (WebClient client = new WebClient())

    {

        client.DownloadFile(url, filename);

    }

}


Aucun commentaire:

Enregistrer un commentaire