Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 223647
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 11, 20262026-05-11T19:14:28+00:00 2026-05-11T19:14:28+00:00

Web server running in Dutch(Belgium) double output; double.TryParse(txtTextbox1.Text, out output); Is this a good

  • 0

Web server running in Dutch(Belgium)

double output;

double.TryParse(txtTextbox1.Text, out output);

Is this a good way to convert text to double in dutch environment? Let’s say the input is “24.45” instead of “24,45“

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-11T19:14:28+00:00Added an answer on May 11, 2026 at 7:14 pm

    If you want to use the Dutch (Belgium) number format:

    double output;
    double.TryParse("24,45", NumberStyles.Any, CultureInfo.GetCultureInfo("nl-BE"), out output);
    

    Or to use the US number format:

    double output;
    double.TryParse("24.45", NumberStyles.Any, CultureInfo.GetCultureInfo("en-US"), out output);
    

    If you attempt to parse “24.45” with a Dutch culture set, you’ll get back “2445”, similarly, if you attempt to parse “24,45” with a US culture, you’ll get “2445”. If you want the parse to fail if the wrong decimal point is used, change NumberStyles.Any to exclude the flag: NumberStyles.AllowThousands:

    double output;
    if (double.TryParse("24.45", NumberStyles.Any ^ NumberStyles.AllowThousands, CultureInfo.GetCultureInfo("nl-BE"), out output))
    

    If your entire application is in Dutch, you should change your cultureinfo globally – here’s how to do it in WinForms and here’s how to do it in ASP.NET.

    Once you’re using a globally set CultureInfo, you can change the above code to:

    double output;
    double.TryParse("24.45", NumberStyles.Any, CultureInfo.CurrentCulture, out output);
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have an apache web server running an HTTP daemon on port 80. This
A web server running a ASP.NET web service. To use the web service you
I've got a web server running IIS7 and I just updated to PHP 5.3.
I have a Node.js web server running on an embedded Linux system. For authentication
I have 2 servers setup at the moment. One is a web server running
Consider a few web server instances running in parallel. Each server holds a reference
I have a web application deployed on a jboss server running on a unix
I am running an ASP.NET application. The web server is located on the same
I would like to monitor my program which is running on the web server.
So, I am running a web server using embedded jetty and the maven app-assembler

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.