I am developing an ASP.Net web api application and I want to validate users' number inputs for the culture. Which means, if user has entered 12.0 when he is has used the culture as "no" (Norwaygian), I should block this request and send an error to user. How can I validate user number inputs considering the culture of the user. I was able to do this thing for users' Date inputs by using DateTime.ParseExact() method. Because this method gives an exception if the parsing number format is not in the specified culture format. But there is no method as Double.ParseExact() in C# api. How can I do this?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
,with.before converting? I believe that's the only variation that exists – roryok Dec 19 '12 at 9:40