How can I calculate date difference between two dates in Years.
For example: (Datetime.Now.Today() - 11/03/2007) in years.
|
How can I calculate date difference between two dates in Years. For example:
| |||||||
feedback
|
|
Heres how:
That is only one of probably better methods, someone could probably find a way to do it via LINQ, but this is simple and to the point. | |||||||||||||
feedback
|
EDIT: Ben pointed out the case where leap year affects the DayOfYear | |||||
feedback
|
|
It's unclear how you want to handle fractional years, but perhaps like this:
| |||||
feedback
|
Average days from Wikipedia/Leap_year. | |||
|
feedback
|
|
If you're trying to get someone's age see this | |||
feedback
|
|
I implemented an extension method to get the number of years between two dates, rounded by whole months.
| |||
|
feedback
|
|
We had to code a check to establish if the difference between two dates, a start and end date was greater than 2 years. Thanks to the tips above it was done as follows:
| |||
|
feedback
|
|
Something along the lines of:
| |||||
feedback
|
|
I hope the link below helps MSDN - DateTime.Subtract.Method (DateTime) There's even examples for C# there. Just simply click the C# language tab. Good luck | |||
|
feedback
|
|
If you're dealing with months and years you need something that knows how many days each month has and which years are leap years. Enter the Gregorian Calendar (and other culture-specific Calendar implementations). While Calendar doesn't provide methods to directly calculate the difference between two points in time, it does have methods such as
| |||
|
feedback
|
|
.NET DateTime objects can be subtracted to give TimeSpan objects. Therefore subtract DateTime(2007,03,11) from Now(). Then use the TotalYears property to get a whole number of years. Multiply the other properties as required to give a fractional year to month/day/hour/etc accuracy. | |||||
feedback
|