DateTimeOffset.TimeOfDay Propiedad

Definición

Obtiene la hora del día del objeto DateTimeOffset actual.

public:
 property TimeSpan TimeOfDay { TimeSpan get(); };
public TimeSpan TimeOfDay { get; }
member this.TimeOfDay : TimeSpan
Public ReadOnly Property TimeOfDay As TimeSpan

Valor de propiedad

TimeSpan

Intervalo de tiempo de la fecha actual que ha transcurrido desde la medianoche.

Ejemplos

En el ejemplo siguiente se usa la TimeOfDay propiedad para extraer la hora y mostrarla en la consola.

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.

Comentarios

La TimeOfDay propiedad no se ve afectada por el valor de la Offset propiedad .

La TimeOfDay propiedad devuelve el componente de hora de un DateTimeOffset objeto en forma de objeto TimeSpan . Es equivalente a la DateTime.TimeOfDay propiedad .

Se aplica a