Possible Duplicate:
c#: whats the easiest way to subtract time?
I want
MyNewDateValue = MyDateNow - MyDateInteger;
Example Today is the 22nd of December 2012
If MyDateIneger value is 120, MyNewDateValue, will return the datetime 120 days ago.
MyNewDateValue = MyDateNow.AddDays(-MyDateInteger);