本文介绍了以格式获取日期时间的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我希望将DateTime作为格式

I want to get the DateTime as the format

09/11/2017 08:33 AM





我的尝试:



使用



What I have tried:

Using

"{0:g}"

无效。

It返回

is not working.
It returns

9/11/2017 8:33 AM





注意:8:33不是08:33



Notice: 8:33 is not 08:33

推荐答案

dt.ToString("dd/MM/yyyy hh:mm tt");


Console.WriteLine("{0:d/M/yyyy hh:mm tt}", dt);


这篇关于以格式获取日期时间的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-27 07:44