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 7739029
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 1, 20262026-06-01T08:25:05+00:00 2026-06-01T08:25:05+00:00

I found an example in MSDN for string to datetime conversion. But it doesn’t

  • 0

I found an example in MSDN for string to datetime conversion. But it doesn’t work, fall into the catch(). Why this code block doesn’t work?

DateTime dateValue;
      string dateString = "2/16/2008 12:15:12 PM";
      try {
         dateValue = DateTime.Parse(dateString);
         Console.WriteLine("'{0}' converted to {1}.", dateString, dateValue);
      }   
      catch (FormatException) {
         Console.WriteLine("Unable to convert '{0}'.", dateString);
      }
  • 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-06-01T08:25:07+00:00Added an answer on June 1, 2026 at 8:25 am

    You’re using whatever the current culture’s idea of a date/time format is – and my guess is that you’re in a culture where the day normally comes before the month.

    If you know the format, I’d typically use the invariant culture and TryParseExact – definitely don’t use Parse and a catch block; either use TryParseExact or TryParse. In this case:

    if (DateTime.TryParseExact(dateString, "M/d/yyyy hh:mm:ss tt",
                               CultureInfo.InvariantCulture, 0, out dateValue))
    {
        Console.WriteLine("'{0}' converted to {1}.", dateString, dateValue);
    }
    else
    {
        Console.WriteLine("Unable to convert '{0}'.", dateString);
    }
    

    If you don’t know the input format, but you know the culture to use, I’d just use DateTime.TryParse with the appropriate culture.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I found the MSDN example code for getting the default view of a collection
MSDN provides a digit placeholder example: 1234.5678 (#####) -> 1235 I found this confusing
I found an example about HTTP POST in msdn, but I am wondering how
I was working on my button template with this example: http://msdn.microsoft.com/en-us/library/ms753328.aspx I found the
I found an example for async ftp upload on msdn which does the following
For example the following cast can be found littered throughout the MSDN documentation: (LPTSTR)&lpMsgBuf
I found this example and used it How do you resize a Bitmap under
I found this example in the App Engine documentation . 1 <% 2 UserService
I'm playing with the incomplete example found at http://www.w3.org/TR/offline-webapps/ But I'm distressed to see
I've found a good example on the MSDN site. SQLConnect I want to connect

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.