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?
saParsed[i]? – phoog Apr 13 '12 at 6:35TryParsefor better error handling – joshua Apr 13 '12 at 6:36