Possible Duplicate:
Convert any currency string to double
How do I convert a currency string like $1,248.99 to a decimal in C#?
You could try this:
var value = double.Parse(currency, NumberStyles.Currency);
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With