Simple CSV parser in C# (with comma-in-cell support!)
Some time ago I needed a simple solution in pure C# for reading and writing CSV files. Surprisingly, I couldn’t find any premade code in Google and had to write it on my own. What is CSV and where’s the catch? CSV stands for comma-separated values. These files are used to store tabular data. For…
Read more Simple CSV parser in C# (with comma-in-cell support!)