Exemplo n.º 1
0
 /// <summary>
 /// Downloads and extracts the given file.
 /// </summary>
 public static void DownloadAndExtractShape(string url, string filename)
 {
     Download.ToFile(url, filename).Wait();
     Extract(filename);
 }