EastAsianLunisolarCalendar.ToDateTime Método

Definición

Devuelve un objeto DateTime cuyo valor está establecido en la fecha, la hora y la era especificadas.

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

Parámetros

year
Int32

Entero que representa el año.

month
Int32

Entero del 1 al 13 que representa el mes.

day
Int32

Entero del 1 al 31 que representa el día.

hour
Int32

Entero del 0 al 23 que representa la hora.

minute
Int32

Entero del 0 al 59 que representa el minuto.

second
Int32

Entero del 0 al 59 que representa el segundo.

millisecond
Int32

Entero del 0 al 999 que representa el milisegundo.

era
Int32

Entero que representa la era.

Devoluciones

Devuelve un objeto DateTime cuyo valor se establece en la fecha, hora y era especificadas.

Excepciones

year, month, day, hour, minute, second, millisecond o era está fuera del intervalo admitido por este calendario.

Comentarios

El ToDateTime método puede convertir cualquier fecha del calendario actual en una fecha de calendario gregoriana. La fecha gregoriana se puede usar posteriormente, por ejemplo, para comparar fechas en calendarios diferentes o crear una fecha equivalente en un calendario determinado.

Se aplica a