Subtracting from a 'DateTime'
c#, datetime
Solution
You may take a look at the AddMinutes method:
var result = date1.AddMinutes(-15);
Problem
I want to subtract from a `DateTime`. Example: ``` date1 = 13/01/2004 12:20:00 result = Subtract(date1-15); ``` Expected output: ``` 13/01/2004 12:05:00 ``` How do I do this?