How to fix “string was not recognized as a valid datetime”

Today, We want to share with you String was not recognized as a valid DateTime.In this post we will show you system formatexception string was not recognizeds as a valid date time, hear for C# – String was not recognized as a valid Date Time we will give you demo and example for implement.In this post, we will learn about PHP Is Not Recognized As An Internal Or External Command with an example.

String was not recognized as a valid DateTime “ format dd/MM/yyyy”

Now consider this bellow list, which shows just list of the possible methods that date can be represented, in actual simple date/time formats used by real users every day across the globe:

  • 11/09/2022
  • 11.09.2022
  • 11-09-2022
  • 11/09/19
  • 09/11/2022
  • 2022-09-11

Solution: string was not recognizeds as a valid date time.

Use DateTime.ParseExact.

this.Text="10/10/2022";

DateTime date = DateTime.ParseExact(this.Text, "dd/MM/yyyy", null);

Creadited By : https://stackoverflow.com/

I hope you get an idea about systems formatexception string was not recognizeds as a valid date time.
I would like to have feedback on my infinityknow.com blog.
Your valuable feedback, question, or comments about this article are always welcome.
If you enjoyed and liked this post, don’t forget to share.

Leave a Comment