These are all seperate properties within the TimeSpan structure
A TimeSpan object does not have the ability to return anything bigger
than the number of days. One could argue that it could do weeks as well,
but it doesn't, but that's easy to calculate.
On the matter of months and above, the subject becomes trickier.
If a TimeSpan object has a value of 2592000 seconds, which equtes to 30
days, how many months is this ? 0 ? 1 ? It depends on the month of
course.
The same goes for years because of the leap year issue.
This means that the best you'll get is an estimate based on some
assumptions, like "every month is 30 days", in which case you can just
divide the Days property by 30.
If you need a specific value, you need the starting point too, so that
you can calculate the right values according to actual months and years.