Difference between DateTime and Timespan?

Hey there, my guess is that DateTime is used to hold full dates and Timespan is used to hold a chunk of time. From a DateTime you can only add TimeSpans and not DateTimes. So i would say it’s better to use Timespans if you want to add or subtract a chunk of time from a specific date using DateTime.

1 Like