I have a problem with the TypeConverter
class. It works fine with CultureInvariant
values but cannot convert specific cultures like English thousan
The DoubleConverter
that is obtained from TypeDescriptor.GetConverter(typeof(double))
end ups calling Double.Parse
with the following arguments:
Double.Parse(
"2,999.95",
NumberStyles.Float,
(IFormatProvider)culture.GetFormat(typeof(NumberFormatInfo)));
The problem is that NumberStyles.Float
does not allows thousands separators and that's why you are getting the problem. You can submit this on Microsoft Connect or see if anybody else had the same problem.
If Double.Parse
is called also with NumberStyles.AllowThousands
the problem would not occur.
Double.Parse(
"2,999.95",
NumberStyles.Float | NumberStyles.AllowThousands,
(IFormatProvider)culture.GetFormat(typeof(NumberFormatInfo)));