HtmlAgilityPack の最新バージョンをダウンロードしました。そこには、Net20、Net40 などのようないくつかのフォルダーが見つかりました。新しいプロジェクトを作成し、add Reference.. (Net20 フォルダーから .dll を選択) を介して HtmlAgilityPack を追加し、簡単なコードを書きました。追加された場所using HtmlAgilityPack;
。そのため、使用宣言ではシンボルを使用できないというエラーが発生しました。
どうしたの?私はライブラリで何か間違ったことをしたと思います。
using HtmlAgilityPack;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
int main()
{
HtmlAgilityPack.HtmlDocument htmlDoc = new HtmlAgilityPack.HtmlDocument();
// There are various options, set as needed
htmlDoc.OptionFixNestedTags=true;
// filePath is a path to a file containing the html
htmlDoc.Load(filePath);
// Use: htmlDoc.LoadXML(xmlString); to load from a string
// ParseErrors is an ArrayList containing any errors from the Load statement
if (htmlDoc.ParseErrors!=null && htmlDoc.ParseErrors.Count>0)
{
// Handle any parse errors as required
}
else
{
if (htmlDoc.DocumentNode != null)
{
HtmlNode bodyNode = htmlDoc.DocumentNode.SelectSingleNode("//body");
if (bodyNode != null)
{
// Do something with bodyNode
}
}
}
}