yyyy ssz ddthh change c# datetime date-math date-manipulation

c# - ssz - Retorno de inicio y fin de año dado cualquier año



string format c# date yyyy mm dd (2)

Esta pregunta ya tiene una respuesta aquí:

Necesito dos o uno (fuera) del método C # que tomará cualquier fecha y hora y devolverá la fecha de inicio del año y la fecha de finalización del año para ese año.


void Dates(DateTime d, out DateTime b, out DateTime e) { b = new DateTime(d.Year, 1, 1); e = new DateTime(d.Year, 12, 31); }


DateTime startDate = new DateTime(year, 1, 1); DateTime endDate = new DateTime(year, 12, 31);