I am using CsvReader to parse a string similar to
"US"|"10"|"0"|"0"|"45.0"|"1.0"|"Product is 1""|"1.65"|"Lb"|"10.20"|""
Since I am parsing multiple records types dynamically I am using the TryGetField()
. When it reaches the unescaped quote, the TryGetField
returns false like it would when it reaches the end of the record. Is there a way to determine if this is bad data vs the end of the record?