C# Corner
Tech
News
Videos
Forums
Trainings
Books
Live
More
Interviews
Events
Jobs
Learn
Career
Members
Blogs
Challenges
Certifications
Bounties
Contribute
Article
Blog
Video
Ebook
Interview Question
Collapse
Feed
Dashboard
Wallet
Learn
Achievements
Network
Refer
Rewards
SharpGPT
Premium
Contribute
Article
Blog
Video
Ebook
Interview Question
Register
Login
Tags
No tag found
Content Filter
Articles
Videos
Blogs
Resources
News
Forums
Interviews
Complexity Level
Beginner
Intermediate
Advanced
Refine by Author
[Clear]
Sharad Gupta(5)
Shehan Peruma(2)
waheedkhan (2)
Rohit Gupta(1)
Ashish Vishwakarma(1)
Tarun Rajak(1)
Mushtaq M A(1)
bhavin (1)
Amir Ali(1)
Vinod Kumar(1)
Sachin Bhardwaj(1)
Mike Steward(1)
Sanjay Ahuja(1)
Anshu Kulhade(1)
Jeeva Subburaj(1)
Veena Sarda(1)
Jean Paul(1)
Kiran Khambete(1)
Ivan Zderadicka(1)
Patrick Lundin(1)
Saurabh Nandu(1)
Pragya Vats(1)
Kevin Morales(1)
Shakti Saxena(1)
Mahesh Chand(1)
John Charles Olamendy(1)
harikishan.jayaraj (1)
Nakul Goyal(1)
Resources
No resource found
Resume Parser with Hugging Face Spaces & Agentic‑Resume‑Parser
Jun 20, 2025.
Parsing a resume into structured data (like name, contact info, job titles, education) is hugely useful — whether you're building an ATS, automating HR intake, or organizing job applications.
Improving Efficiency With Strategy Design Pattern In JSON Parser Example
Jun 04, 2018.
Here we will see how Strategy Pattern helped in refactoring code in JSON parser example
C# Object To JSON Parser (JSON Serializer)
Mar 30, 2018.
This article demonstrate how to parse a C# object into JSON string without using any .Net serializer and third party libraries.
HTML Parser In Xamarin.Android Using jsoup
Jan 20, 2018.
In this article, we will learn how to parse an HTML page using jsoup in Xamarin.Android.
Log Parser Usage Details For IIS Logs
Apr 21, 2017.
Explore Log Parser for IIS logs: Analyze, extract, and transform data effortlessly. Master command-line tools for detailed log analysis and troubleshooting. Unlock insights from your log files efficiently.
XML Parsing Using DOM Parser in Android Studio
Jun 24, 2013.
Inthis article you will learn how to parse Xml using Dom parser
XML Parser Function in PHP: Part 5
Jun 12, 2013.
In this article I describe the PHP XML Parser functions xml_set_end_namespace_decl_handler, xml_set_start_namespace_decl_handler, xml_set_processing_instruction_handler and xml_set_unparsed_entity_decl_handler.
XML Parser Function in PHP: Part 4
Jun 11, 2013.
In this article I describe the PHP XML Parser functions xml_set_default_handler, xml_set_element_handler, xml_set_external_entity_ref_handler, xml_set_notation_decl_handler and xml_set_object.
XML Parser Function in PHP: Part 3
Jun 07, 2013.
In this article I describe the PHP XML Parser functions xml_parser_create, xml_parser_free, xml_parser_get_option, xml_parser_set_option and xml__set_character_data_handler.
XML Parser Function in PHP: Part 2
Jun 05, 2013.
In this article I describe the PHP XML Parser functions xml_get_current_line_number, xml_get_error_code, xml_parse, xml_parser_into_struct and xml_parser_create_ns.
XML Parser Function in PHP: Part 1
Jun 05, 2013.
This article describes the PHP XML Parser functions utf8_decode, utf8_encode, xml_error_string, xml_get_current_byte_index and xml_get_current_column_number.
XML Parser In PHP
Feb 28, 2013.
In this article, I explain about the XML parser in PHP. The tree-based parser transforms an XML documents to tree structure. The event-based parser views XML documents as a series of events.
Difference Between Dom and Sax Parser in iPhone
Feb 22, 2013.
In this article I will explain the basic difference between DOM and SAX Parser in iPhone.
Simple XML Parser in VB.NET
Nov 10, 2012.
This article shows how to create a very simple XML parser.
Working With PHP XML Expat Parser And XML DOM
Dec 31, 2011.
In this article we are going to understand the concept of PHP Expat parser & XML DOM. First of all we need to know about XML. XML is used to describe data and to focus on what data is. An XML file describes the structure of the data. There are only user defined tags in XML.
Simple XML Parser in C#
Apr 05, 2005.
This article shows how to create a very simple XML parser.
SpellCheck.NET Parser in C#
Jun 25, 2002.
SpellCheck.net is free online spell checking site. Whenever I need to check my spelling I visit this site , so I decided to write a parser for this site.
XML Parser in C#
Apr 30, 2002.
This project gives you a head start to write XML parser in C#.
Offensive Socket Security in .NET: Weaponizing C# Parsers - State Desynchronization over TCP (Phase 05A)
Apr 24, 2026.
A critical mistake in .NET network programming is treating a continuous TCP stream like a discrete message queue. Discover how Parser State Desynchronization can lead to authorization bypasses in custom protocols. This deep-dive explores the underlying mechanics of socket state management, provides a C# proof-of-concept, maps to real-world CWEs, and outlines the exact architectural patterns needed to secure enterprise systems.
Parser API Using .Net Core Web API 2.1 And Hosting In Raspberry PI
May 22, 2018.
This article explains how to create generic parser API to parse video feeds from various sites that support RSS/Atom feed
IIS Log Parser
Aug 19, 2013.
This article introduces the IIS Log Parser and explains how to use it.
Website Recursive Url Parser
Mar 28, 2011.
In this article I am trying to share a piece of code that might be useful to some of the developers.
POC for DOM XML Parser
Jul 21, 2005.
The classes found in System.Xml namespace provide functionality to parse and navigate through XML documents. The attached source code shows how to use this functionality in C#.
Windows Spell Checker using SpellCheck.NET Parser
Jun 26, 2002.
In this article, I put SpellCheck.net parser to the test with Windows Form Spell Checker application.
CS CODEDOM Parser
Jun 12, 2002.
CS CODEDOM Parser is utility which parses the C# source code and creates the CODEDOM tree of the code(general classes that represent code, part of .NET Framework - namespace System.CodeDom).
.NET Math Expression Parser
Apr 22, 2002.
This is a math expression parser written in C#, which evaluates mathematical expressions.
Text to HTML Parser
Apr 05, 2001.
If you have been into developing Web Applications then you might have at many times experienced that when you display multiple lines of data from a database you loose the spacing or formatting between multiple lines of data.
Query Processing In DBMS
Jul 14, 2022.
Query Processing in DBMS is the approach of selecting the best strategy or plan which can be used to respond to a database request.
Data Structures And Algorithms - Part Three - An Array Of Fun
Jun 15, 2017.
Arrays in computer science are static data structures that store elements in contiguous memory locations. They can be one-dimensional, two-dimensional, or jagged arrays. This article explores how to declare, manipulate, and use arrays in C#, along with algorithmic considerations like time complexity.
Convert HTML To XML
Dec 04, 2015.
In this article you will learn how to convert HTML to XML.
XML Overview
Nov 14, 2009.
In this article I will explain XML and how to write an XML code.
Query Optimization in SQL Server
Dec 19, 2007.
This article offers suggestions on how to optimize query performance in SQL Server 2005.
Bulk Data Transactions using OpenXML
Oct 13, 2004.
OPENXML is a new function added to SQL Server 2000 that provides a rowset view over an XML document. Since a rowset is simply a set of rows that contain columns of data, OPENXML is the function that allows an XML document to be treated in the familiar relational database format. It allows for the passing of an XML document to a T-SQL stored procedure for updating the data.
XML Strengths and Weaknesses with DOM, ASP, and XSL
Apr 30, 2001.
In this article we're going to take a look at some of the terminology that comes with using XML and its related technologies, as well as how to create and transform XML documents with XSL using Microsoft's MSXML parser. To test the code samples shown in this article you should be running Windows NT/2000/XP with IIS installed. You should also have SQL server 2000 installed on the same machine.