DateTimeOffset.AddMilliseconds Method
Microsoft Silverlight will reach end of support after October 2021. Learn more.
Adds a specified number of milliseconds to the current DateTimeOffset object.
Namespace: System
Assembly: mscorlib (in mscorlib.dll)
Syntax
'Declaration
Public Function AddMilliseconds ( _
milliseconds As Double _
) As DateTimeOffset
public DateTimeOffset AddMilliseconds(
double milliseconds
)
Parameters
- milliseconds
Type: System.Double
A number of whole and fractional milliseconds. The number can be negative or positive.
Return Value
Type: System.DateTimeOffset
An object whose value is the sum of the date and time represented by the current DateTimeOffset object and the number of whole milliseconds represented by milliseconds.
Exceptions
Exception | Condition |
---|---|
ArgumentOutOfRangeException | The resulting DateTimeOffset value is less than MinValue. -or- The resulting DateTimeOffset value is greater than MaxValue. |
Remarks
The fractional part of the milliseconds parameter is the fractional part of a millisecond. For example, 4.5 is equivalent to 4 milliseconds and 5000 ticks, where one millisecond equals 10,000 ticks. However, milliseconds is rounded to the nearest millisecond; all values of .5 or greater are rounded up.
Note: |
---|
This method returns a new DateTimeOffset object. It does not modify the value of the current object by adding milliseconds to its date and time. |
Because a DateTimeOffset object does not represent the date and time in a specific time zone, the AddMilliseconds method does not consider a particular time zone's adjustment rules when it performs date and time arithmetic.
Version Information
Silverlight
Supported in: 5, 4, 3
Silverlight for Windows Phone
Supported in: Windows Phone OS 7.1, Windows Phone OS 7.0
XNA Framework
Supported in: Xbox 360, Windows Phone OS 7.0
Platforms
For a list of the operating systems and browsers that are supported by Silverlight, see Supported Operating Systems and Browsers.