Bridge

TimeSpan Constructor (Int32, Int32, Int32)

Initializes a new instance of the TimeSpan structure to a specified number of hours, minutes, and seconds.

Namespace:  System
Assembly:  Bridge (in Bridge.dll)

Syntax


public TimeSpan(
	int hours,
	int minutes,
	int seconds
)
Public Sub New ( _
	hours As Integer, _
	minutes As Integer, _
	seconds As Integer _
)
public:
TimeSpan(
	int^ hours, 
	int^ minutes, 
	int^ seconds
)

Parameters

hours
Type: System..::..Int32
Number of hours.
minutes
Type: System..::..Int32
Number of minutes.
seconds
Type: System..::..Int32
Number of seconds.

Exceptions


ExceptionCondition
System..::..ArgumentOutOfRangeExceptionThe parameters specify a TimeSpan value less than MinValue or greater than MaxValue.