I wanted to know if there is any way to make CSV reader read all the columns in the CSV (which will have same column names). I get a An item with the same key has already been added
error. I want this to work because my logic is to make a array of similar named columns if it exists and later for each instance of the array element I write further logic.
The final point is I want to be able to read all the columns even if there are columns with same name. I am using a custom object to hold the name value data. So no need to worry about dictionary causing same key exist error. If Lumen-works CSV doesn't support it then what can I use?. Also my CSV file has Json data (with double quotes, comma's) I need to handle this too.
You've stumped me -- I don't know of any CSV parser that accounts for duplicate column headers, and I've tested quite a few of them. There are CSV parsers which will give you raw column data, though, and with some leg work you can use this as a building block to get your data into a friendlier state.
This will return a sequence of
Dictionary<string, List<string>>
, one for each record, with the key being the header and the list being all the columns with the same header:I'm not familiar enough with Lumenworks -- this uses Ctl.Data, which I know will allow for formatted JSON data and any other weirdness within columns so long as it is properly quoted. (disclaimer: I'm the author of Ctl.Data)