HTMLページの解析にHtmlAgilityPackを使用しています。タグ h3 のコレクションを選択してループし、各 h3 要素について、そのすぐ隣の要素を選択したいと考えています。これが私のサンプルHtmlです:
<h3>Somthing here</h3>
<ul>list of something</ul>
<h3>Somthing here</h3>
<ul>list of something</ul>
<h3>Somthing here</h3>
<ul>list of something</ul>
<h3>Somthing here</h3>
<ul>list of something</ul>
<h3>Somthing here</h3>
<ul>list of something</ul>
h3 のコレクションを選択する方法は知っていますが、それぞれの横にある ul を選択する方法がわかりません