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.