PersianCalendar::AddMonths Method (DateTime, Int32)
Returns a DateTime object that is offset the specified number of months from the specified DateTime object.
Assembly: mscorlib (in mscorlib.dll)
Parameters
- time
-
Type:
System::DateTime
The DateTime to which to add months.
- months
-
Type:
System::Int32
The positive or negative number of months to add.
Return Value
Type: System::DateTimeA DateTime object that represents the date yielded by adding the number of months specified by the months parameter to the date specified by the time parameter.
| Exception | Condition |
|---|---|
| ArgumentException | The resulting DateTime is outside the supported range. |
| ArgumentOutOfRangeException | months is less than -120,000 or greater than 120,000. |
TheKind property of the returned DateTime value always equals DateTimeKind::Unspecified. You can preserve the Kind property of the time parameter by calling the DateTime::SpecifyKind method, as the following example shows.
Available since 10
.NET Framework
Available since 2.0
Silverlight
Available since 5.0