Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Html Agility Pack を使用してすべての HTML タグを選択し、それをリストに配置して、Web ページで使用可能なすべてのタグを表示するにはどうすればよいですか。
ありがとう、
ジェペ
HtmlDocument doc = new HtmlDocument(); doc.Load("file.htm"); foreach(HtmlNode node in doc.DocumentNode.SelectNodes("//*"){ ///..... do something with node }