When writing a CSV file there is a need to quote only specific columns. Using CsvHelper 6.1.0, Is there some way to individually configure fields, particually whether they are quoted?
Field1,Field2,Field3,Field4,Field5,Field6 "Quoted","Quoted",NotQuoted,NotQuoted,NotQuoted,"Quoted" "Quoted","Quoted",NotQuoted,NotQuoted,NotQuoted,"Quoted"
So far I've only found, in the configuration object, QuoteAllFields and QuoteNoFields.