i2van / CsvLINQPadDriver

LINQPad 8/7/6/5 data context dynamic driver for querying CSV files.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Allow trimming of all characters inside quotes

i2van opened this issue · comments

Sync with JoshClose/CsvHelper#1913

Test file can be found at JoshClose/CsvHelper#1782 (comment)

Remove:

var whiteSpaceChars = WhiteSpaceChars
.Except(csvConfiguration.Delimiter.Length == 1
? new[] { csvConfiguration.Delimiter.First() }
: Array.Empty<char>())
.ToArray();