欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

asp.net下定制日期输出格式的代码

程序员文章站 2024-02-04 19:12:52
以前用日期作为字符串时,我这么写: string sdate = datetime.now.year.tostring() +&nb...
以前用日期作为字符串时,我这么写:
string sdate = datetime.now.year.tostring() + datetime.now.month.tostring() + datetime.now.day.tostring() + datetime.now.hour.tostring() + datetime.now.minute.tostring() + datetime.now.second.tostring()


其实,只要下面一句就可以了 ^o^