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!