Code Maze Author

Victorio Nikolaev

Victorio Nikolaev is a versatile Full-Stack Software Engineer specializing in C# / .NET and Back-end / Web development, currently completing a Bachelor's degree in Computer Science. He's passionate about continuously learning and experimenting with new technologies and continuously tries to hone his skills to evolve as an engineer.
Also find me here:

MY ARTICLES:

How To Check if a URL Is Valid in C#

In the world of web development using .NET, it's crucial to make sure the web addresses (URLs) our application uses are correct and safe. In this article, we will understand the basics of how to check if a URL is valid in C#. We'll include some easy-to-understand code...

AngleSharp in C#: Parsing and Scraping HTML

AngleSharp is the most standards-compliant HTML parser for C#: it parses markup exactly the way a browser does and gives us a real DOM we can query with CSS selectors, traverse, and modify. That makes it the right tool for web scraping and HTML processing where...