Skip to content

Instantly share code, notes, and snippets.

View CodeCommissions's full-sized avatar

Code Commissions CodeCommissions

View GitHub Profile
@CodeCommissions
CodeCommissions / MainWindow.cs
Last active January 25, 2022 20:14
A basic web scraper using AngleSharp. Part of a WPF application.
//Base code courtesy of:
//https://dev.to/rachelsoderberg/create-a-simple-web-scraper-in-c-1l1m
using AngleSharp.Dom;
using AngleSharp.Html.Dom;
using AngleSharp.Html.Parser;
using AngleSharp.Text;
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;