YoTo Blog

Convert C# String -> DateTime


Getting Started

This is a sample that converts a string to DateTime.

namespace

System


Method

DateTime.Parser

Use this when you want to quickly convert only the date.
There is also Convert.ToDateTime, but the result is the same.

var str = "2024-11-27";
var date = DateTime.Parse(str);

DateTime.ParserExact

Use this when there is a specific format.

var str = "2024-11-27 15:30:10 123"; var date = DateTime.ParseExact(str, "yyyy-MM-dd HH:mm:ss fff");

Date format notation

Date format
Refer to the above post.


Related posts

DateTime -> String
String -> DateTime


Conclusion

I wrote a very brief example.

I think ParseExact will be used a lot in real use.