Unless it is a hobby project, the vast majority of programmers should avoid writing their own compiler. You should write your own compiler or interpreter because you have a unique idea for a programming language that is not al…
This post will show you how to write a simple DSL in C# using ANTLR. What is DSL? A domain-specific language is a computer language specialized to a particular application domain. This is in contrast to a general-purpose l…
Parsing CSV using ANTLR in c# This blog post will show you how to parse the CSV file using ANTLR in C#. CSV is a very popular format for transferring data. There is a lot of C# csv parser available on the internet but you can e…
This article will show you how to create a simple CSV parser using C# without using any NuGet package. If you want to create an advanced parser in C#, then you can use ANTLR. What is ANTLR? As per the ANLTR official websit…