DateTime
按照一定格式转化成String
:
string format = "yyyyMMdd";
Console.WriteLine(DateTime.Now.ToString(format));
String
按照一定格式转化成DateTime
:
using System.Globalization;
DateTimeFormatInfo dtFormat = new DateTimeFormatInfo();
dtFormat.ShortDatePattern = "yyyy/MM/dd";
DateTime dt = Convert.ToDateTime("2011/05/26", dtFormat);
Console.WriteLine(dt.ToShortDateString());
**粗体** _斜体_ [链接](http://example.com) `代码` - 列表 > 引用
。你还可以使用@
来通知其他用户。