Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要在 C# 中获取当前时间,但是当我创建一个 DateTime 对象时,时间设置为 00:00:00。
如何获取当前时间实例?
DateTime.Now.ToString("HH:mm:ss tt");
这将其作为字符串提供给您。
DateTime.Now是您要搜索的内容...
DateTime.Now.ToShortTimeString().ToString()
这会给你DateTime作为10:50PM
10:50PM
尝试这个:
string.Format("{0:HH:mm:ss tt}", DateTime.Now);
有关更多详细信息,您可以查看:您如何获得当前时间?