/ Published in: C#
Expand |
Embed | Plain Text
double val = Convert.ToDouble(Double.Parse("$123,456.98", System.Globalization.NumberStyles.Currency)); // val = 123456.98
You need to login to post a comment.
gilbitron on 08/18/10
1 person have marked this snippet as a favorite
double val = Convert.ToDouble(Double.Parse("$123,456.98", System.Globalization.NumberStyles.Currency)); // val = 123456.98
You need to login to post a comment.