Is there a built-in method in .NET that validates csv files/strings?
I would prefer something like this online csv validator but in C#. I have done some research but all I have found are examples of people writing the code themselves (examples were all written a few years ago and might be outdated).
POC:
bool validCSV = CoolCSV_ValidatorFunction(string csv/filePath);