Replies: 1 comment
-
var config = new CsvConfiguration(CultureInfo.InvariantCulture)
{
ShouldQuote = args => args.Row.Row != 1 && indexes.Contains(args.Row.Index),
}; |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I would like to quote a column but not the field name in the header. This is the code I'm using which gets me the quoted column:
but how do I exclude the header?
Many thanks,
Owen.
Beta Was this translation helpful? Give feedback.
All reactions