Select from following answers:- int.TryParse(value, NumberStyles.Currency, UICulture);
- decimal.TryParse(value, NumberStyles.Currency, UICulture,out tempMoney);

- decimal.TryParse(value)
- All Above
You need to specify the NumberStyles.Currency and the culture that the user is using to parse the DateTime correctly.
Show Correct Answer
Source: microsoft book (c#) | |
Alert Moderator