using System.Collections.Generic;
public static void Main()
<table id=""prefectures-table"" class=""loading"">
<th data-i18n=""prefecture"" class=""prefecture"">Prefecture</th>
<th class=""trend"" data-i18n=""daily-trend"">Daily Trend</th>
<span data-i18n=""confirmed"">Confirmed</span>
<div class=""increment"">
<div class=""today""><span data-i18n=""increment-today"">(Today)</span></div>
<div class=""yesterday""><span data-i18n=""increment-yesterday"">(Yesterday)</span></div>
<th data-i18n=""recovered"" class=""recovered"">Recovered</th>
<th data-i18n=""deaths"" class=""deceased"">Deaths</th>
<tbody class=""total-rows"">
<td class=""prefecture"" data-i18n=""total"">Total</td>
<td class=""trend""></td>
<td class=""confirmed""></td>
<td class=""delta""></td>
<td class=""recovered""></td>
<td class=""deceased""></td>
<tbody class=""prefecture-rows"">
<tr class =""prefecture-row row0"">
<tbody class=""pseudo-prefecture-rows""></tbody>
<tbody class=""cruise-header"">
<td colspan=""4"" data-i18n=""cruise-passengers-explanation"">Cruise crew and passengers are not included in totals.</td>
<tbody class=""cruise-rows""></tbody>
<tbody class=""loading-rows"">
<tr><td colspan=""4""><div class=""loader""><div class=""lds-dual-ring""></div></div></td></tr>
var htmlDoc = new HtmlDocument();
var table = htmlDoc.DocumentNode.SelectNodes("//*[@id='prefectures-table']").First();
var quer = table.SelectNodes(".//tbody//tr//td").Select(x => new { Table = table.Id, CellText = x.InnerText });
FiddleHelper.WriteTable(quer);