23
1
using System;
2
using HtmlAgilityPack;
3
4
public class Program
5
{
6
public static void Main()
7
{
8
// define htmldocument
9
var doc = new HtmlAgilityPack.HtmlDocument();
10
11
// declare HTMLWeb
12
HtmlWeb web = new HtmlWeb();
13
14
// here loading document for specfic URL
15
doc = web.Load("https://www.technologycrowds.com/2019/06/sha-512-hash-using-c-sharp.html");
16
17
// here searching for specific words
18
var ress = doc.DocumentNode.SelectSingleNode("//*[text()[contains(., 'Working')]]").InnerText;
19
20
// now displaying final output
21
Console.WriteLine(ress);
22
}
23
}
Cached Result
Compilation error (line 17, col 32): Could not find an implementation of the query pattern for source type 'object'. 'Select' not found.