DateTime.Deconstruct Yöntem

Tanım

Aşırı Yüklemeler

Deconstruct(DateOnly, TimeOnly)

bu DateTime örneği ve TimeOnlyile DateOnly yapısızlaştırıyor.

Deconstruct(Int32, Int32, Int32)

Bu DateOnly örneği Year, Monthve Dayile yok eder.

Deconstruct(DateOnly, TimeOnly)

Kaynak:
DateTime.cs
Kaynak:
DateTime.cs

bu DateTime örneği ve TimeOnlyile DateOnly yapısızlaştırıyor.

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)

Parametreler

date
DateOnly

Bu yöntem döndürdüğünde DateOnly , bu DateTime örneğin değerini temsil eder.

time
TimeOnly

Bu yöntem döndürdüğünde TimeOnly , bu DateTime örneğin değerini temsil eder.

Şunlara uygulanır

Deconstruct(Int32, Int32, Int32)

Kaynak:
DateTime.cs
Kaynak:
DateTime.cs

Bu DateOnly örneği Year, Monthve Dayile yok eder.

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)

Parametreler

year
Int32

Bu yöntem döndürdüğünde Year , bu DateTime örneğin değerini temsil eder.

month
Int32

Bu yöntem döndürdüğünde Month , bu DateTime örneğin değerini temsil eder.

day
Int32

Bu yöntem döndürdüğünde Day , bu DateTime örneğin değerini temsil eder.

Şunlara uygulanır