Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Prodentim Probiotics Specially Designed For The Health Of Your Teeth And Gums

Instant Grammar Checker - Correct all grammar errors and enhance your writing

Teach Your Child To Read

Powerful WordPress hosting for WordPress professionals

Disclosure: My content contains affiliate links.

31,167 questions

40,724 answers

573 users

How to parse the date time from a string in C#

1 Answer

0 votes
using System;

class Program
{
    static void Main() {
        string s = "2019-07-09 23:31 PM";

        DateTime dt = DateTime.ParseExact(s, "yyyy-MM-dd HH:mm tt", null);
        
        Console.Write(dt.ToString());
    }
}



/*
run:

07/09/2019 23:31:00

*/

 





answered Sep 7, 2019 by avibootz

Related questions

2 answers 96 views
1 answer 92 views
1 answer 97 views
97 views asked Sep 7, 2019 by avibootz
...