Add hours or minutes to the current time

You can use other variables:

DateTime otherDate = DateTime.Now.AddMinutes(25);
DateTime tomorrow = DateTime.Now.AddHours(25);

Leave a Comment