Input string was not in a correct format #2

As far as I know the Convert methods use the current locale to do such conversions. In this case I’d guess your current locale would expect a comma as decimal point. Try to set the current locale for your application or the conversion to some language/country where dots are used (e.g. en_US). The method should provide a second optional parameter to provide a IFormatProvider as an alternative solution.

Leave a Comment