Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I got this error when I'm trying to convert String into Double on WP7 C#.

tokenvalue = Convert.ToDouble(saParsed[i].Replace(".", ","));

I getting this error in WP7. A first chance exception of type System.FormatException occurred in mscorlib.dll

Is there any way to avoid it or is it only a fault of Emulator?

share|improve this question
4  
What is the value of the string at saParsed[i]? – phoog Apr 13 '12 at 6:35
Can you Show us the String Value's ?? And Use TryParse for better error handling – joshua Apr 13 '12 at 6:36
6  
Instead of replacing ./, it is always better to spec the CultureInfo. – Henk Holterman Apr 13 '12 at 6:39
saParsed[i] can be for example 4.1 CultureInfo didnt solve the problem – user1138470 Apr 13 '12 at 7:12

3 Answers

First you can try to use this:

double tokenvalue = Convert.ToDouble(saParsed[i], CultureInfo.InvariantCulture);

Anyway you'd better check if it's ok:

double tokenvalue;
if (Double.TryParse(saParsed[i], out tokenvalue) 
{ 
    // Do what you please here
}
share|improve this answer
It did not solve my problem. Still have the same error. – user1138470 Apr 13 '12 at 6:42
@user1138470: show us saParsed[i] value – Marco Apr 13 '12 at 6:43
saParsed[i] can be for example 4.0 or 4.1 – user1138470 Apr 13 '12 at 6:52
OK, I tried and nothing helped. This class is the implementation of Shunting-yard algorithm. It works on Console Application but on WP7 I'm getting this error. – user1138470 Apr 13 '12 at 7:13
@user1138470: which language has emulator? Which is locale? – Marco Apr 13 '12 at 7:15
show 1 more comment

Try something like this.

var tokenvalue = Convert.ToDouble(saParsed[i]);
var tokenValueText = tokenValue.ToString().Replace(".", ",");

Hope it will work fine if saParsed[i] is holding the valid double value.

share|improve this answer

Try to convert it with the following statement:

double tokenvalue; 
if (double.TryParse(saParsed[i], NumberStyles.Any, 
    NumberFormatInfo.CurrentInfo, out tokenvalue))
{  
    // Convertion was successfull
} 
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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