EastAsianLunisolarCalendar.ToDateTime Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Returns a DateTime that is set to the specified date, time, and 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 through 13 that represents the month.
- day
- Int32
An integer from 1 through 31 that represents the day.
- hour
- Int32
An integer from 0 through 23 that represents the hour.
- minute
- Int32
An integer from 0 through 59 that represents the minute.
- second
- Int32
An integer from 0 through 59 that represents the second.
- millisecond
- Int32
An integer from 0 through 999 that represents the millisecond.
- era
- Int32
An integer that represents the era.
Returns
A DateTime that is set to the specified date, time, and era.
Exceptions
year
, month
, day
, hour
, minute
, second
, millisecond
, or era
is outside the range supported by this calendar.
Remarks
The ToDateTime method can convert any date in the current calendar to a Gregorian calendar date. The Gregorian date can subsequently be used, for example, to compare dates in different calendars or create an equivalent date in a particular calendar.