DateTime.Deconstruct Método

Definição

Sobrecargas

Deconstruct(DateOnly, TimeOnly)

Desconstrui essa DateTime instância por DateOnly e TimeOnly.

Deconstruct(Int32, Int32, Int32)

Desconstrui essa DateOnly instância por Year, Monthe Day.

Deconstruct(DateOnly, TimeOnly)

Origem:
DateTime.cs
Origem:
DateTime.cs

Desconstrui essa DateTime instância por DateOnly e 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

Quando esse método retorna, representa o DateOnly valor dessa DateTime instância.

time
TimeOnly

Quando esse método retorna, representa o TimeOnly valor dessa DateTime instância.

Aplica-se a

Deconstruct(Int32, Int32, Int32)

Origem:
DateTime.cs
Origem:
DateTime.cs

Desconstrui essa DateOnly instância por Year, Monthe 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

Quando esse método retorna, representa o Year valor dessa DateTime instância.

month
Int32

Quando esse método retorna, representa o Month valor dessa DateTime instância.

day
Int32

Quando esse método retorna, representa o Day valor dessa DateTime instância.

Aplica-se a