在C#中添加DateTime [英] Adding DateTime in C#

查看:210
本文介绍了在C#中添加DateTime的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

是否可以在C#中添加日期?

Is it possible to add dates in C#?

(DateTime.Today.ToLongDateString() + 10)

我试过这个但是没有用。

I tried this but it doesn't work.

推荐答案

你想加几天吗?

DateTime newDate = DateTime.Today.AddDays(10);

请注意,您将获得新的DateTime!

Note that you get a new DateTime back!

MSDN

这篇关于在C#中添加DateTime的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆