Home  >  Article  >  Backend Development  >  Learn the use of DateTime.ParseExact in C# (picture)

Learn the use of DateTime.ParseExact in C# (picture)

黄舟
黄舟Original
2017-03-11 13:32:063204browse

Learn the use of DateTime.ParseExact in C# (picture)

I did a test,
Learn the use of DateTime.ParseExact in C# (picture)
now = 2015/3/ 7. There is no problem in using "yyyy/M/d" to format the string, but there is a problem. What if today is not the 7th, nor is it March?
If it is October, what about the 17th?
Learn the use of DateTime.ParseExact in C# (picture)
After testing, it turns out that this is compatible. The format string using "yyyy/M/d" is still available and does not need to be changed to "yyyy/MM/dd". This way the problem is much simpler to solve.

Reference: http://www.php.cn/

I did a test,
Learn the use of DateTime.ParseExact in C# (picture)
now = 2015/3/7, format it like this There is no problem with using "yyyy/M/d" for the string, but there is a problem. What if today is not the 7th, nor is it March?
If it is October, what about the 17th?
Learn the use of DateTime.ParseExact in C# (picture)
After testing, it turns out that this is compatible. The format string using "yyyy/M/d" is still available and does not need to be changed to "yyyy/MM/dd". This way the problem is much simpler to solve.

Reference: https://msdn.microsoft.com/en-us/library/w2sa9yss.aspx

The above is the detailed content of Learn the use of DateTime.ParseExact in C# (picture). For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn