using System.Text.RegularExpressions;
using System.Collections.Generic;
public static void Main()
HtmlWeb web = new HtmlWeb();
var doc = web.Load("https://www.ecdc.europa.eu/en/geographical-distribution-2019-ncov-cases");
List<List<string>> table = doc.DocumentNode.SelectSingleNode("//table[@class='table table-bordered table-condensed table-striped']//table[@class='table table-bordered table-condensed table-striped']")
.Where(tr=>tr.Elements("td").Count()>1)
.Select(tr => tr.Elements("td").Select(td => td.InnerText.Trim()).ToList())
foreach(var item in table)
foreach(var column in item)
Console.Write(column+" ");