我正在尝试从https://webgis.dme.qld.gov.au/webgis/webqmin/shapes/epm.tar下载文件以使用 webclient 保存到我的 d:\ 驱动器。我在“Client.DownloadFile”之后收到错误 Invalid token '(' in class、struct 或 interface member declaration
这是我第一次使用 C#!
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Project1
{
class Class1
{
WebClient Client = new WebClient ();
Client.DownloadFile("https://webgis.dme.qld.gov.au/webgis/webqmin/shapes/epm.tar", @"d:\epm.tar");
}
}