This document is provided on an "AS IS" basis without warranties of any kind. Smartsite iXperion class libraries may change in future releases.
Adds the specified number of milliseconds to the value of the given DateTime.

Namespace: Smartsite.Runtime.Modules
Assembly:  Smartsite.Runtime.Modules (in Smartsite.Runtime.Modules.dll)

Syntax

C#Copy imageCopy Code
[(IsDeterministic = true)]
public static <> AddMilliseconds(
	 dt,
	int milliseconds
)
Visual Basic (Declaration)Copy imageCopy Code
<(IsDeterministic := True)> _
Public Shared Function AddMilliseconds ( _
	dt As , _
	milliseconds As Integer _
) As (Of )

Parameters

dt
DateTime
A DateTime.
milliseconds
Int32
A number of whole and fractional milliseconds. This parameter can be negative or positive.

Return Value

A DateTime whose value is the sum of the date and time represented by this instance and the given number of milliseconds.

See Also

Advanced