csharp 上午/下午或24小时格式的时间值 - 来自http://stackoverflow.com/questions/7875259/how-do-i-get-the-am-pm-value-

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了csharp 上午/下午或24小时格式的时间值 - 来自http://stackoverflow.com/questions/7875259/how-do-i-get-the-am-pm-value-相关的知识,希望对你有一定的参考价值。

        DateTime d = new DateTime(1, 1, 1, 23, 12, 0);
        var res = d.ToString("hh:mm tt");   // this show  11:12 Pm
        var res2 = d.ToString("HH:mm");  // this show  23:12

        Console.WriteLine(res);
        Console.WriteLine(res2);

        Console.Read();

以上是关于csharp 上午/下午或24小时格式的时间值 - 来自http://stackoverflow.com/questions/7875259/how-do-i-get-the-am-pm-value-的主要内容,如果未能解决你的问题,请参考以下文章

如何在ios中以24小时格式显示上午/下午

swift - 如何将日期从上午/下午转换为 24 小时格式

Javascript:将 24 小时时间字符串转换为 12 小时时间,上午/下午且无时区

将12小时制改为24小时制

如何在上午/下午 24 小时之间设置日期

如何在 html5 日期时间选择器中将格式从 12 小时更改为 24 小时?