使用DateTime.ToShortDate()

时间:2016-06-01 19:42:25

标签: c# .net string datetime

使用DateTime.TryParse()方法将字符串转换为DateTime对象的正确方法是什么,然后使用DateTime.ToShortDateString()将数据重新格式化为字符串?
2016年5月26日12:00:00 AM所需:
2016/5/26

获取当前日期和时间:
DateTime CurrentDateTime = DateTime.Now;
将今天的日期时间转换为短日期:
string CurrentDate=CurrentDateTime.ToShortDateString();
将今天的日期时间转换为短时间:
string CurrentTime= CurrentDateTime.ToShortTimeString()

资源:
How to convert datetime to short date time
DateTime.ToShortDateString Method ()

0 个答案:

没有答案