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

Semrush - keyword research tool

Turn ChatGPT, Claude, Gemini, And CoPilot Into Your Personal Assistant, Business Coach, Content Creator, And More

AFFILIATE MARKETING Your all-in-one performance engine Manage affiliates, creators, and customer referrals in one unified platform—turning every partnership into measurable growth
Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

42,845 questions

55,674 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 284 views
1 answer 211 views
211 views asked Jan 18, 2017 by avibootz
1 answer 230 views
230 views asked Sep 7, 2019 by avibootz
1 answer 251 views
4 answers 332 views
332 views asked Jan 18, 2017 by avibootz
...