陪你听风

C#时间戳

电脑版发表于:2020/1/2 12:20


格式化成:年月日时分秒

string timestamp = DateTime.Now.ToString("yyyyMMddHHmmss");

毫秒级时间戳

string timestamp = ((DateTime.Now.ToUniversalTime().Ticks - 621355968000000000) / 10000).ToString();

秒级时间戳

string timestamp = (DateTime.Now.ToUniversalTime().Ticks - 621355968000000000) / 10000000.ToString();


关于TNBLOG
TNBLOG,技术分享。技术交流:群号677373950
ICP备案 :渝ICP备18016597号-1
App store Android
精彩评论
{{item.replyName}}
{{item.content}}
{{item.time}}
{{subpj.replyName}}
@{{subpj.beReplyName}}{{subpj.content}}
{{subpj.time}}
猜你喜欢