TimeOnly.Deconstruct 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.
Overloads
Deconstruct(Int32, Int32, Int32, Int32, Int32) |
Deconstructs this TimeOnly instance into Hour, Minute, Second, Millisecond, and Microsecond. |
Deconstruct(Int32, Int32) | |
Deconstruct(Int32, Int32, Int32) |
Deconstructs this TimeOnly instance into Hour, Minute, and Second. |
Deconstruct(Int32, Int32, Int32, Int32) |
Deconstructs this TimeOnly instance into Hour, Minute, Second, and Millisecond. |
Deconstruct(Int32, Int32, Int32, Int32, Int32)
- Source:
- TimeOnly.cs
- Source:
- TimeOnly.cs
Deconstructs this TimeOnly instance into Hour, Minute, Second, Millisecond, and Microsecond.
public:
void Deconstruct([Runtime::InteropServices::Out] int % hour, [Runtime::InteropServices::Out] int % minute, [Runtime::InteropServices::Out] int % second, [Runtime::InteropServices::Out] int % millisecond, [Runtime::InteropServices::Out] int % microsecond);
public void Deconstruct (out int hour, out int minute, out int second, out int millisecond, out int microsecond);
member this.Deconstruct : int * int * int * int * int -> unit
Public Sub Deconstruct (ByRef hour As Integer, ByRef minute As Integer, ByRef second As Integer, ByRef millisecond As Integer, ByRef microsecond As Integer)
Parameters
- millisecond
- Int32
When this method returns, contains the Millisecond value for this TimeOnly instance.
- microsecond
- Int32
When this method returns, contains the Microsecond value for this TimeOnly instance.
Applies to
Deconstruct(Int32, Int32)
- Source:
- TimeOnly.cs
- Source:
- TimeOnly.cs
public:
void Deconstruct([Runtime::InteropServices::Out] int % hour, [Runtime::InteropServices::Out] int % minute);
public void Deconstruct (out int hour, out int minute);
member this.Deconstruct : int * int -> unit
Public Sub Deconstruct (ByRef hour As Integer, ByRef minute As Integer)
Parameters
Applies to
Deconstruct(Int32, Int32, Int32)
- Source:
- TimeOnly.cs
- Source:
- TimeOnly.cs
public:
void Deconstruct([Runtime::InteropServices::Out] int % hour, [Runtime::InteropServices::Out] int % minute, [Runtime::InteropServices::Out] int % second);
public void Deconstruct (out int hour, out int minute, out int second);
member this.Deconstruct : int * int * int -> unit
Public Sub Deconstruct (ByRef hour As Integer, ByRef minute As Integer, ByRef second As Integer)
Parameters
Applies to
Deconstruct(Int32, Int32, Int32, Int32)
- Source:
- TimeOnly.cs
- Source:
- TimeOnly.cs
Deconstructs this TimeOnly instance into Hour, Minute, Second, and Millisecond.
public:
void Deconstruct([Runtime::InteropServices::Out] int % hour, [Runtime::InteropServices::Out] int % minute, [Runtime::InteropServices::Out] int % second, [Runtime::InteropServices::Out] int % millisecond);
public void Deconstruct (out int hour, out int minute, out int second, out int millisecond);
member this.Deconstruct : int * int * int * int -> unit
Public Sub Deconstruct (ByRef hour As Integer, ByRef minute As Integer, ByRef second As Integer, ByRef millisecond As Integer)
Parameters
- millisecond
- Int32
When this method returns, contains the Millisecond value for this TimeOnly instance.