Manipulating dates is a common task in C# applications, whether for scheduling, logging, or calculations.
The DateTime
and DateOnly
structures provide built-in methods to add or subtract days, months, years, hours, and minutes efficiently.
Adding and Subtracting Days
Use the AddDays
method to modify a DateTime
instance:
using System;
class Program
{
static void Main()
{
DateTime today = DateTime.Now;
DateTime nextWeek = today.AddDays(7);
DateTime lastWeek = today.AddDays(-7);
Console.WriteLine($"Today: {today:yyyy-MM-dd HH:mm}");
Console.WriteLine($"Next Week: {nextWeek:yyyy-MM-dd HH:mm}");
Console.WriteLine($"Last Week: {lastWeek:yyyy-MM-dd HH:mm}");
}
}
Adding and Subtracting Months
Use the AddMonths
method to adjust the month while automatically handling month-end variations:
DateTime currentDate = new DateTime(2025, 3, 31);
DateTime nextMonth = currentDate.AddMonths(1);
DateTime previousMonth = currentDate.AddMonths(-1);
Console.WriteLine($"Current Date: {currentDate:yyyy-MM-dd HH:mm}");
Console.WriteLine($"Next Month: {nextMonth:yyyy-MM-dd HH:mm}");
Console.WriteLine($"Previous Month: {previousMonth:yyyy-MM-dd HH:mm}");
Adding and Subtracting Years
Use the AddYears
method to adjust the year, handling leap years automatically:
DateTime date = new DateTime(2024, 2, 29);
DateTime nextYear = date.AddYears(1);
DateTime previousYear = date.AddYears(-1);
Console.WriteLine($"Original Date: {date:yyyy-MM-dd HH:mm}");
Console.WriteLine($"Next Year: {nextYear:yyyy-MM-dd HH:mm}");
Console.WriteLine($"Previous Year: {previousYear:yyyy-MM-dd HH:mm}");
Adding and Subtracting Hours
Use the AddHours
method to modify the hour component:
DateTime now = DateTime.Now;
DateTime inFiveHours = now.AddHours(5);
DateTime fiveHoursAgo = now.AddHours(-5);
Console.WriteLine($"Current Time: {now:yyyy-MM-dd HH:mm}");
Console.WriteLine($"In 5 Hours: {inFiveHours:yyyy-MM-dd HH:mm}");
Console.WriteLine($"5 Hours Ago: {fiveHoursAgo:yyyy-MM-dd HH:mm}");
Adding and Subtracting Minutes
Use the AddMinutes
method to modify the minute component:
DateTime currentTime = DateTime.Now;
DateTime inThirtyMinutes = currentTime.AddMinutes(30);
DateTime thirtyMinutesAgo = currentTime.AddMinutes(-30);
Console.WriteLine($"Current Time: {currentTime:yyyy-MM-dd HH:mm}");
Console.WriteLine($"In 30 Minutes: {inThirtyMinutes:yyyy-MM-dd HH:mm}");
Console.WriteLine($"30 Minutes Ago: {thirtyMinutesAgo:yyyy-MM-dd HH:mm}");
Using DateOnly
for Simpler Date Manipulation
For applications that don't require time components, DateOnly
(introduced in .NET 6) provides a cleaner approach:
DateOnly today = DateOnly.FromDateTime(DateTime.Now);
DateOnly futureDate = today.AddDays(30);
Console.WriteLine($"Today: {today}");
Console.WriteLine($"30 Days Later: {futureDate}");
Conclusion
C# provides built-in methods for adjusting dates effortlessly. Whether working with DateTime
or DateOnly
, these functions ensure accurate date calculations, even when dealing with leap years, month-end scenarios, hours, and minutes.