DateTimeOffset.TimeOfDay Właściwość
Definicja
Ważne
Niektóre informacje odnoszą się do produktu w wersji wstępnej, który może zostać znacząco zmodyfikowany przed wydaniem. Firma Microsoft nie udziela żadnych gwarancji, jawnych lub domniemanych, w odniesieniu do informacji podanych w tym miejscu.
Pobiera godzinę dnia dla bieżącego DateTimeOffset obiektu.
public:
property TimeSpan TimeOfDay { TimeSpan get(); };
public TimeSpan TimeOfDay { get; }
member this.TimeOfDay : TimeSpan
Public ReadOnly Property TimeOfDay As TimeSpan
Wartość właściwości
Przedział czasu bieżącej daty, który upłynął od północy.
Przykłady
W poniższym przykładzie użyto TimeOfDay właściwości , aby wyodrębnić czas i wyświetlić ją w konsoli.
DateTimeOffset currentDate = new DateTimeOffset(2008, 5, 10, 5, 32, 16,
DateTimeOffset.Now.Offset);
TimeSpan currentTime = currentDate.TimeOfDay;
Console.WriteLine("The current time is {0}.", currentTime.ToString());
// The example produces the following output:
// The current time is 05:32:16.
let currentDate = DateTimeOffset(2008, 5, 10, 5, 32, 16, DateTimeOffset.Now.Offset)
let currentTime = currentDate.TimeOfDay
printfn $"The current time is {currentTime}."
// The example produces the following output:
// The current time is 05:32:16.
Dim currentDate As New DateTimeOffset(#5/10/2008 5:32:16AM#, _
DateTimeOffset.Now.Offset)
Dim currentTime As TimeSpan = currentDate.TimeOfDay
Console.WriteLine("The current time is {0}.", currentTime.ToString())
' The example produces the following output:
' The current time is 05:32:16.
Uwagi
Właściwość TimeOfDay nie ma wpływu na wartość Offset właściwości.
Właściwość TimeOfDay zwraca składnik DateTimeOffset czasu obiektu w postaci TimeSpan obiektu. Jest ona równoważna DateTime.TimeOfDay właściwości.