GregorianCalendar.ToDateTime Method

Definition

Returns a DateTime that is set to the specified date and time in the specified era.

public:
 override DateTime ToDateTime(int year, int month, int day, int hour, int minute, int second, int millisecond, int era);
public override DateTime ToDateTime (int year, int month, int day, int hour, int minute, int second, int millisecond, int era);
override this.ToDateTime : int * int * int * int * int * int * int * int -> DateTime
Public Overrides Function ToDateTime (year As Integer, month As Integer, day As Integer, hour As Integer, minute As Integer, second As Integer, millisecond As Integer, era As Integer) As DateTime

Parameters

year
Int32

An integer that represents the year.

month
Int32

An integer from 1 to 12 that represents the month.

day
Int32

An integer from 1 to 31 that represents the day.

hour
Int32

An integer from 0 to 23 that represents the hour.

minute
Int32

An integer from 0 to 59 that represents the minute.

second
Int32

An integer from 0 to 59 that represents the second.

millisecond
Int32

An integer from 0 to 999 that represents the millisecond.

era
Int32

An integer that represents the era.

Returns

The DateTime that is set to the specified date and time in the current era.

Exceptions

era is outside the range supported by the calendar.

-or-

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.

Applies to

See also