如何将时间转换为24小时格式?
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何将时间转换为24小时格式?相关的知识,希望对你有一定的参考价值。
Como convertir tiempo a formato de 24 horas y viceversa.
DateTime d = DateTime.Now; // 12 hour format Response.Write(d.ToString("hh:mm") + " | " ); // 24 hour format Response.Write(d.ToString("H:mm"));
以上是关于如何将时间转换为24小时格式?的主要内容,如果未能解决你的问题,请参考以下文章
如何将 12 或 24 小时时间格式的日期转换为“互联网”日期?
C#如何将DateTime的12小时格式转换为24小时时间格式????