vb.net 怎么计算出明天,昨天的日期? 格式:yymmdd

2025-05-21 04:56:09
推荐回答(1个)
回答1:

明天 DateTime.Now.AddDays(1)
昨天 DateTime.Now.AddDays(-1)
格式化用Format()