Posteriormente a investigar en diversos repositorios y foros de internet al concluir hemos descubierto la solución que te compartiremos ahora.
Ejemplo: obtener los días de la semana de una fecha c#
// This example demonstrates the DateTime.DayOfWeek propertyusingSystem;classSamplepublicstaticvoidMain()// Assume the current culture is en-US.// Create a DateTime for the first of May, 2003.DateTime dt =newDateTime(2003,5,1);
Console.WriteLine("Is Thursday the day of the week for 0:d?: 1",
dt, dt.DayOfWeek == DayOfWeek.Thursday);
Console.WriteLine("The day of the week for 0:d is 1.", dt, dt.DayOfWeek);/*
This example produces the following results:
Is Thursday the day of the week for 5/1/2003?: True
The day of the week for 5/1/2003 is Thursday.
*/
Sección de Reseñas y Valoraciones
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)