ToDateTime(Int32,Int32,Int32,Int32,Int32,Int32,Int32,Int32) Method
In This Topic
When overridden in a derived class, returns a
System.DateTime that is set to the specified date and time in the specified era.
Syntax
'Declaration
Public Overloads Overrides Function ToDateTime( _
ByVal As Integer, _
ByVal As Integer, _
ByVal As Integer, _
ByVal As Integer, _
ByVal As Integer, _
ByVal As Integer, _
ByVal As Integer, _
ByVal As Integer _
) As Date
public override DateTime ToDateTime(
int ,
int ,
int ,
int ,
int ,
int ,
int ,
int
)
Parameters
- year
- An integer that represents the year.
- month
- A positive integer that represents the month.
- day
- A positive integer that represents the day.
- hour
- An integer from 0 to 23 that represents the hour.
- minute
- An integer from 0 to 59 that represents the minute.
- second
- An integer from 0 to 59 that represents the second.
- millisecond
- An integer from 0 to 999 that represents the millisecond.
- era
- An integer that represents the era.
Return Value
The
System.DateTime that is set to the specified date and time in the current era.
Exceptions
Exception | Description |
System.ArgumentOutOfRangeException | year is outside the range supported by the calendar.
-or-
month is outside the range supported by the calendar.
-or-
day is outside the range supported by the calendar.
-or-
hour is less than zero or greater than 23.
-or-
minute is less than zero or greater than 59.
-or-
second is less than zero or greater than 59.
-or-
millisecond is less than zero or greater than 999.
-or-
era is outside the range supported by the calendar. |
See Also