S
shapper
Hello,
I have a CSV file with 8 fields (8 columns).
I need to import it and fill a IList<Task> where each Task is a row in
the CSV file being the columns its properties.
All Task properties are String except for one that is DateTime so in
that case I need to parse it.
Does anyone knows a script for this?
And what about a Fluent script? Something like:
csvFile.Column["1"].For(t => t.Name) ...
Well just an idea.
I've never worked with CSV files so ...
The file will not have more than 200 rows. And in most cases will have
around 10/20.
Thank You,
Miguel
I have a CSV file with 8 fields (8 columns).
I need to import it and fill a IList<Task> where each Task is a row in
the CSV file being the columns its properties.
All Task properties are String except for one that is DateTime so in
that case I need to parse it.
Does anyone knows a script for this?
And what about a Fluent script? Something like:
csvFile.Column["1"].For(t => t.Name) ...
Well just an idea.
I've never worked with CSV files so ...
The file will not have more than 200 rows. And in most cases will have
around 10/20.
Thank You,
Miguel