I am trying to import a CSV file using TextFieldParser. A particular CSV file is causing me problems due to its nonstandard formatting. The CSV in question has its fields
If you dont set HasFieldsEnclosedInQuotes = true the resultant list of columns will be more if the data contains (,) comma.
e.g
"Col1","Col2","Col3"
"Test1", 100, "Test1,Test2"
"Test2", 200, "Test22"
This file should have 3 columns but while parsing you will get 4 fields which is wrong.