Search code examples
c#.netdata-bindingmasking

Bound Textbox to a currency, how to get the double?


I have a textbox bound to a currency data field. So it adds '$' to the start of the text or ($xx.xx) if it's negative. How do I get just the plain double (xx.xx) from the textbox instead of everything ($xx.xx)?


Solution

  • Make sure you set the proper NumberStyles flags when calling double.Parse.

    Obviously, you'd use the example below but replace the literal string with a reference to the text in the TextBox.

    double d = double.Parse ("$10.10", NumberStyles.Currency);