Parse HTML with .NET and the HtmlAgilityPack

Parse HTML with .NET and the HtmlAgilityPack

Parsing HTML with .NET can be a useful skill for any developer working on web applications or data analysis projects. One tool that can be particularly helpful in these scenarios is HtmlAgilityPack , an open-source HTML parser library for .NET. In this blog post, we’ll go over how to use HtmlAgilityPack to parse HTML and extract data from it in a .NET application.

Read Blog Post
Write Json Files asynchronously with .NET

Write Json Files asynchronously with .NET

Writing JSON files asynchronously is a useful technique for improving the performance and scalability of your application. By using an asynchronous approach, you can write JSON data to a file without blocking the main thread, allowing your application to continue running smoothly and respond to user input.

Read Blog Post
Write XML Files asynchronously with .NET

Write XML Files asynchronously with .NET

Writing XML files asynchronously is a useful technique for improving the performance and scalability of your application. By using an asynchronous approach, you can write XML data to a file without blocking the main thread, allowing your application to continue running smoothly and respond to user input.

Read Blog Post