Is there an easy way to test that your application runs properly across all region formats? Or would I need to cumbersomely set the region format, reboot the phone and then deploy my application?

The reason I ask is because I have recently discovered my app does not run properly when Region Format is set to Russian because decimal places are represented as "," instead of ".". Thus in Russian the following code throws an exception:

string version = "2.5"
decimal d = Convert.ToDecimal(version);

whereas the following is correct:

string version = "2,5"
decimal d = Convert.ToDecimal(version);

Thanks!

link|improve this question

feedback

1 Answer

up vote 4 down vote accepted

Try adding the Culture:

string version = "2.5"
decimal d = Convert.ToDecimal(version, new CultureInfo("en-US"));

List of all Cultures

link|improve this answer
wow thanks! I guess that gets around the particular issue that I had! – n00b Jan 19 at 21:51
Awesome glad to hear it. – MyKuLLSKI Jan 19 at 22:00
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.