C#. Three ways to convert string (string) format to datetime type in net

Source: Internet
Author: User
Tags datetime string format

This article mainly introduces C #,. NET in three ways to convert string format to datetime type, this article summarizes Convert.todatetime (string), Convert.todatetime (String, IFormatProvider ), DateTime.ParseExact () Three ways, the need for friends can refer to the next

Mode one: Convert.todatetime (String)

The code is as follows:

Convert.todatetime (String)

Note: string format is required and must be YYYY-MM-DD HH:MM:SS

Mode two: Convert.todatetime (String, IFormatProvider)

The code is as follows:

DateTimeFormatInfo Dtformat = new System.globalizationdatetimeformatinfo ();

Dtformat.shortdatepattern = "YYYY/MM/DD";

DateTime dt = Convert.todatetime ("2014/10/10", Dtformat);

Note: Custom rules can be customized in any format.

Mode III: DateTime.ParseExact ()

The code is as follows:

String datestring = "20141010";

DateTime dt = DateTime.ParseExact (datestring, "YyyyMMdd", System.Globalization.CultureInfo.CurrentCulture);

Description: Any format can be custom rules, the effect of the same way two.

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.