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 的字符串解析为 HtmlAgilityPack.HtmlDocument,但我似乎无法将其转换回字符串。
Dim Document As HtmlAgilityPack.HtmlDocument = New HtmlAgilityPack.HtmlDocument() Document.LoadHtml(Result)
你可以使用 InnerHTML
Dim html As String html = Document.DocumentNode.InnerHTML