Replies: 2 comments
-
What do you mean by
|
Beta Was this translation helpful? Give feedback.
0 replies
-
For me neither work. I have a input file that contains lines beginning with '#' for comments. The 'comment' lines are still read in as if there was no comment there regardless if I set the comment char to # or take the default. I'm currently using v12.1.2 |
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.
-
if i set the Comment property as the default('#'), csvreader still reads commented lines as input
var config = new Configuration
{
Delimiter = ",",
//Comment = '#' //this does not work although # is the default
Comment = Convert.ToChar("#"), //this works
Quote = '"',
HasHeaderRecord = false,
AllowComments = true,
};
Beta Was this translation helpful? Give feedback.
All reactions