Click or drag to resize

Duration Constructor (Int32, Double)

Initializes a new instance of Duration from a specified number of days and seconds. The time standard is not specified, so this Duration will match the time standard of anything it is added to or subtracted from.

Namespace:  AGI.Foundation.Time
Assembly:  AGI.Foundation.Core (in AGI.Foundation.Core.dll) Version: 24.1.418.0 (24.1.418.0)
Syntax
public Duration(
	int days,
	double seconds
)

Parameters

days
Type: SystemInt32
The number of days in the new Duration.
seconds
Type: SystemDouble
The number of seconds in the new Duration.
Exceptions
ExceptionCondition
ArgumentOutOfRangeException Thrown if the inputs represent a value too large to be stored in a Duration.
See Also