I just want to add 1 day to a DateTime. So I wrote:
DateTime
DateTime date = new DateTime(2010, 4, 29, 10, 25, 00); TimeSpan t = new TimeSpan(1, 0, 0,
date.Add(t);
returns a modified DateTime and does not change the original instance on which you call the Add method on.