Dear Friend
As we need to show the last reebooted date(hope not days) we need to subtract the time span(span variable) from the current date and display the date in the label
Below code will give you an idea
DateTime dt1;
DateTime dt2;
dt1=DateTime.Now;
dt2=DateTime.Now.AddDays(5);
TimeSpan span = dt2.Subtract(dt1);
dt1=dt1.Subtract(span);
MessageBox.Show((dt1.ToString()));
Hope you are celar now
Happy Programming!!!! :)
Regards
Vipin Kumar Mallaya