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.
使用Label1.Text = Date.Now我能够添加“10-07-2013 06:59:30”
我不想显示秒数。我怎么能在 vb.net 中。
使用 Date.ToString() ,它在一个重载中允许您指定发出的精确日期格式:
Date.Now.ToString("MM-dd-yyyy")
或者
只需将默认输出修剪为 10 个字符:
Date.Now.ToString().Substring(1,10)
使用.ToString()并指定格式,例如
.ToString()
Label1.Text = DateTime.Now.ToString("MM/dd/yyyy hh:mm")