DateTime.AddMinutes Method
Adds a specified number of minutes to the current DateTime object.
Namespace: System
Assembly: mscorlib (in mscorlib.dll)
Syntax
public DateTime AddMinutes (
double val
)
Parameters
- val
A specific number of minutes. Note that the number in the val parameter can be either positive or negative, and it can express partial minutes as well as whole minutes.
Return Value
A new DateTime object having a value that represents the sum of the current DateTime object and the specified number of minutes.
Remarks
This method does not change the value of the current DateTime object; rather, it returns a new DateTime object.
The fractional part of a minute is represented by the fractional part of the val parameter (that is, anything to the right of the decimal point). For example, 4.5 is equivalent to 4 minutes, 30 seconds, 0 milliseconds, and 0 ticks. The number in the val parameter is rounded to the nearest tick.
Version Information
Available in the .NET Micro Framework versions 2.0, 2.5, 3.0, 4.0, 4.1, and 4.2.