Bridge

DateTime Constructor (Int32, Int32, Int32, Int32, Int32, Int32)

Initializes a new instance of the DateTime structure to the specified year, month, day, hour, minute, and second.

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

Syntax


[TemplateAttribute]
public DateTime(
	int year,
	int month,
	int day,
	int hours,
	int minutes,
	int seconds
)
<TemplateAttribute> _
Public Sub New ( _
	year As Integer, _
	month As Integer, _
	day As Integer, _
	hours As Integer, _
	minutes As Integer, _
	seconds As Integer _
)
[TemplateAttribute]
public:
DateTime(
	int^ year, 
	int^ month, 
	int^ day, 
	int^ hours, 
	int^ minutes, 
	int^ seconds
)

Parameters

year
Type: System..::..Int32
The year (1 through 9999).
month
Type: System..::..Int32
The month (1 through 12).
day
Type: System..::..Int32
The day (1 through the number of days in month).
hours
Type: System..::..Int32
minutes
Type: System..::..Int32
seconds
Type: System..::..Int32

Exceptions


ExceptionCondition
System..::..ArgumentOutOfRangeExceptionyear is less than 1 or greater than 9999. -or- month is less than 1 or greater than 12. -or- day is less than 1 or greater than the number of days in month.-or- hour is less than 0 or greater than 23. -or- minute is less than 0 or greater than 59. -or- second is less than 0 or greater than 59.