Guest User

Untitled

a guest
Apr 24th, 2018
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. WebClient client = new WebClient();
  2. File.WriteAllBytes("logo1.png",Convert.FromBase64String(client.DownloadString(URL")));
  3.  
  4. <head>
  5. <meta charset="utf-8">
  6. </head>
  7.  
  8. var url = "https://i.stack.imgur.com/zVeie.jpg?s=328&g=1";
  9. var filename = @"c:downloadslogo1.png";
  10. WebClient client = new WebClient();
  11. client.DownloadFile(url, filename);
Add Comment
Please, Sign In to add comment