DateTime.Deconstruct Método

Definición

Sobrecargas

Deconstruct(DateOnly, TimeOnly)

Deconstruye esta DateTime instancia por DateOnly y TimeOnly.

Deconstruct(Int32, Int32, Int32)

Deconstruye esta DateOnly instancia por Year, Monthy Day.

Deconstruct(DateOnly, TimeOnly)

Source:
DateTime.cs
Source:
DateTime.cs

Deconstruye esta DateTime instancia por DateOnly y TimeOnly.

public:
 void Deconstruct([Runtime::InteropServices::Out] DateOnly % date, [Runtime::InteropServices::Out] TimeOnly % time);
public void Deconstruct (out DateOnly date, out TimeOnly time);
member this.Deconstruct : DateOnly * TimeOnly -> unit
Public Sub Deconstruct (ByRef date As DateOnly, ByRef time As TimeOnly)

Parámetros

date
DateOnly

Cuando este método devuelve , representa el DateOnly valor de esta DateTime instancia.

time
TimeOnly

Cuando este método devuelve , representa el TimeOnly valor de esta DateTime instancia.

Se aplica a

Deconstruct(Int32, Int32, Int32)

Source:
DateTime.cs
Source:
DateTime.cs

Deconstruye esta DateOnly instancia por Year, Monthy Day.

public:
 void Deconstruct([Runtime::InteropServices::Out] int % year, [Runtime::InteropServices::Out] int % month, [Runtime::InteropServices::Out] int % day);
public void Deconstruct (out int year, out int month, out int day);
member this.Deconstruct : int * int * int -> unit
Public Sub Deconstruct (ByRef year As Integer, ByRef month As Integer, ByRef day As Integer)

Parámetros

year
Int32

Cuando este método devuelve , representa el Year valor de esta DateTime instancia.

month
Int32

Cuando este método devuelve , representa el Month valor de esta DateTime instancia.

day
Int32

Cuando este método devuelve , representa el Day valor de esta DateTime instancia.

Se aplica a