I am reading CSV files using LumenWorks.CsvReader
. It works fine when I do not try to prescribe a Decimal
type column like this:
cols = new List<Column> {
new Column { Name="client", Type=typeof(string) },
new Column { Name="gross_sell", Type=typeof(Decimal) }
}
... and reading into a DataTable
like this:
DataTable dt = new DataTable();
using (StreamReader stream = new StreamReader(csvFileName, encoding))
using (CsvReader reader = new CsvReader(stream, hasHeaders, delimiter))
{
reader.Columns = cols;
dt.Load(reader);
}
The problem is that it fails on values like 42.53
telling me that the input string has bad format. The default culture info says it should be 42,53
.
How can I tell to LumenWorks.CsvReader
that it should use invariant culture in the case?