如何从C#DateTime获取小时,而不带零?

前端之家收集整理的这篇文章主要介绍了如何从C#DateTime获取小时,而不带零?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
DateTime now = DateTime.Now;
        string time = now.ToString("h");

错误地说我应该首先解析字符串.目前的时间是3我不想要03我只想要3.“hh”返回03,但我不能简单地使用“h”.

解决方法

System.DateTime.Now.ToString("%h")

你必须要specify that the format is custom.

原文链接:https://www.f2er.com/csharp/93469.html

猜你在找的C#相关文章