简体   繁体   中英

Why isn't AddMonths() working on my DateTime? (see code)

Controller:

        DateTime startDate = DateTime.Now;

        ViewData["now"] = startDate.ToString();
        ViewData["interval"] = interval.ToString();

        startDate.AddMonths(interval);

        ViewData["later"] = startDate.ToString();

View:

Now: <%=ViewData["now"] %><br />

Later: <%=ViewData["later"] %><br />

Interval: <%=ViewData["interval"] %>

This yields:

Now: 10/2/2009 12:17:14 PM
Later: 10/2/2009 12:17:14 PM
Interval: 6
startDate  = startDate.AddMonths(interval);

From the documentation:

This method does not change the value of this DateTime object. Instead, a new DateTime object is returned whose value is the result of this operation.

You really want:

ViewData["later"] = startDate.AddMonths(interval).ToString();

or something like that.

AddMonths返回带有值的新DateTime。

startDate = startDate.AddMonths(interval)

you need to assign the result of the AddMonths to a variable. AddMonths does not change the value of the object it was called on, but rather returns a new DateTime with the value that results from the operation leaving the original DateTime value unchanged.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM