示例#1
0
文件: Program.cs 项目: Lapprenti/XAM
        static async System.Threading.Tasks.Task Main(string[] args)
        {
            Console.WriteLine("Hello World!");
            ErgastAPI ergastAPI = new ErgastAPI();
            await ergastAPI.FindSeasonsAsync();

            await ergastAPI.FindDriversForSeasonAsync(2020);

            Console.ReadKey();
        }