我在尝试安装HtmlAgilityPack.dll ver 1.4时遇到问题。我已将文件复制到我的windows \ system32文件夹中,并在运行中尝试了regsvr32 htmlagilitypack.dll。
我收到以下错误:
The module was loaded but the entry point DllUnregisterServer was not found.
它似乎是许多人在SO上使用的常见库,因此dll无法被破坏。我该如何解决这个问题?
答案 0 :(得分:3)
您无法使用regsvr32
的原因是因为HTML Agility包不是COM库。它是用.NET编写的,因此您需要从.NET项目中引用。
c:\SharedLibs\HtmlAgilityPack
。请参阅CodePlex网站:
以下是我在每个人最喜欢的搜索引擎中挖掘的几个链接:
A simple web crawler in C# using HtmlAgilityPack
.NET Html Agility Pack: How to use malformed HTML just like it was well-formed XML...