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.
我需要以这种格式dd-mm-yyyy-hh-mm-ss格式化当前 DateTime并且不知道该怎么做。我在互联网上阅读,然后编写以下代码:
DateTime saveNow = DateTime.Now; MessageBox.Show(String.Format("{0:u}", saveNow));
但这会以这种格式返回日期:
2013-04-24 23:11:34Z
有什么可以帮助我的吗?我需要第一种格式来附加到我正在创建的文件名。
DateTime.Now.ToString("dd-MM-yyyy-hh-mm-ss")
更多信息在这里