I use LinqToExcel in my application for a while now and has been working like a charm.
But I'm facing a problem reading currency strings from Excel.
I can't post images yet, but the value in excel is 9999
formated like 9.999,00
(pt-BR)
Local in my machine LinqToExcel reads this value just fine(9999) and I can convert it to decimal.
But on the IIS server that has a en-US culture it reads this same value as 9,999.00, so when I try to convert is to decimal I get an exception.
Is there a way to set the default culture for LinqToExcel or something like that? Because I don't want to replace the ,
and .
it's just too ugly.
I'm using C# VS2013.