How to subtract a certain amount of time from a DateTime object in C#? - Biz Tech

How to subtract a certain amount of time from a DateTime object in C#?

Listen
 DateTime now = DateTime.Now;
TimeSpan timeToSubtract = new TimeSpan(1, 0, 0); // subtract 1 hour
DateTime newDateTime = now.Subtract(timeToSubtract);
Console.WriteLine(newDateTime);