私はhtmlを読み込んでテーブルからデータを書き込める簡単なコードを持っています:
foreach (HtmlElement hrel in testWebBrowser.Document.GetElementsByTagName("table"))
{
HtmlElementCollection coll2 = hrel.GetElementsByTagName("tr");
Console.WriteLine(coll2[0].InnerText);
Console.WriteLine(coll2[1].InnerText);
Console.WriteLine(coll2[2].InnerText);
Console.WriteLine(coll2[3].InnerText);
}
しかし、私はテーブルを読みたいid
...どうすればこれを行うことができますか?