How to use Convert.ChangeType() when conversionType is decimal and input is "40.00"

42,401

Solution 1

The decimal point might not be represented by the period character in your current culture.

In general, when performing culture-invariant conversions, it's best to specify CultureInfo.InvariantCulture as the IFormatProvider argument to the method:

(decimal) Convert.ChangeType(a, typeof(decimal), CultureInfo.InvariantCulture);

Solution 2

The conversion is most likely done using a culture that uses the period as thousands separator instead of decimal separator.

Specify the culture when you convert the value:

Convert.ToDecimal(a, CultureInfo.InvariantCulture)

Solution 3

The following code

 string s = "40.00";
 decimal d = (decimal)Convert.ChangeType(s, typeof(decimal));

makes d = 40. This looks fine for me. What is your issue exactly?

Edit: It seems you might have an issue with the culture used. Do this for conversion:

string s = "40.00";
decimal d = (decimal)Convert.ChangeType(s, typeof(decimal), CultureInfo.InvariantCulture);
Share:
42,401
masterchris_99
Author by

masterchris_99

Updated on April 29, 2020

Comments

  • masterchris_99
    masterchris_99 about 4 years

    I mean, I want to convert this:

    string a = "40.00";
    Convert.ChangeType(a, typeof(decimal))
    

    the result is a decimal value of "4000"

    the problem is that the convert call is in a very abstract generic method in a xmlToObject Converter. I don't want to add programmatically lot's of different exceptions to convert correctly.

    regards Chris