Open hnmange opened 2 years ago
What have you tried?
I have tried below code.
var list= fastCSV.ReadFile<string>("sample.csv", ',', (o, c) => { o = c[0]; return true; });
However, I used any existing class type that has a string property as a work around.
How to use Readfile method for single column CSV file? I want to read file directly into list of string only not into any custom type class.