Knowledge Base

Snippets

06

Converting a textbox money field value ($1,250.00) to a double value . . .

double MyDoubleValue = double.Parse(txtMoneyAmount.Text, NumberStyles.Currency);

Comments

There are currently no comments, be the first to post one!

Post Comment

Only registered users may post comments.