Async parsing with AngleSharp

So I want to parse some data from website and I found a tutorial, here is code: public static async void Test() { var config = Configuration.Default.WithDefaultLoader(); using var context = BrowsingContext.New(config); var url = "http://webcode.me"; using var doc = await context.OpenAsync(url); // var title = doc.QuerySelector("title").InnerHtml; var title = doc.Title; Console.WriteLine(title); var pars =… Read More Async parsing with AngleSharp