Date Calculations

  • Thread starter Thread starter Jim Heavey
  • Start date Start date
J

Jim Heavey

How to do you add and subtract dates in C#, in VB there was a Date Class
which provided AddDays.... I see a DateTime class in C#, but none of these
methods...where be it?
 
The DateTime structure has lots of addition classes (Add, AddDay, AddHour,
AddMillisecond, ...).
 
Back
Top