datetime class : AddMonths(int) method
Description
Gets a new datetime instance which is obtained by adding the number of months to the invoker instance.
Syntax
datetimeInstance.AddMonths(int numberOfMonths)
Arguments
| Class | Name | Description |
| int | numberOfMonths | Number of months |
Return value
| Class | Description |
| datetime | New datetime type instance which is obtained by adding the argument. |
Sample code
| 1: | datetime dt = new datetime(2016, 3, 4, 4, 13, 0); |
| 2: | datetime addMonth1 = dt.AddMonths(5); // 2016/08/04 4:13:00 |
| 3: | datetime addMonth2 = dt.AddMonths(-5); // 2015/10/04 4:13:00 |
Notes
It's a wrapper of the System.DateTime.AddMonths(Int32) method.


