Given a DateTime representing their birthday, how do I calculate someone's age?
|
29
|
|||||||
|
|
|
For some reason Jeff's code didn't seem simple enough. To me this seems simpler and easier to understand:
|
||||||||||||||||||
|
|
|
Here is one solution I found:
|
||||||||||||||
|
|
|
Many years ago, to provide an age calculator gimmick on my website, I wrote a function to calculate age to a fraction. This is a quick port of that function to C# (from the PHP version). I'm afraid I haven't been able to test the C# version, but hope you enjoy all the same! (Admittedly this is a bit gimmicky for the purposes of showing user profiles on Stack Overflow, but maybe readers will find some use for it. :-)) |
|||
|
|
|
|
The best way that I know of because of leap years and everything is:
Hope this helps. |
|||
|
|
|
|
@Nick: That's not a correct answer, because like you say, there are leap years, and therefore not each year has 365 days. By just counting the number of days and dividing by 365, you'll get slippage every 4 years or so. |
||||
|
|
|
@Nick: No, remember, it matters that one's age updates on one's birthday, and not 1 day early every 4 years or so. While your description of the general age would indeed be correct, the boundary cases here involve days near people's birthdays. |
||
|
|
|
|
@Nick Actually, the slippage will be significant if today is one day off of my birthday, or within twenty if I'm 80. ;) (Whoops, looks like I posted a dupe comment due to not refreshing enough :-o ) |
||
|
|
|
|
Let's think about the edge cases. In which time zone was the someone born? In which time zone is he or she in today? What if s/he crosses a time zone border within an hour of local time / server time / Greenwich Mean time??! |
||
|
|
|
|
Another way could be to go through the TimeSpan Class:
Not sure how that works with "funky" days and leap years, I think your initial solution possibly works better. |
||
|
|
|
|
Another function, not my me but found on the web and a bit refined:
Just two things that come into my mind: What about people from countries that do not use the gregorian calendar? DateTime.Now is in the server-specific culture i think. I have absolutely 0 knowledge about actually working with Asian calendars and I do not know if there is an easy way to convert dates between calendars, but just in case you're wondering about those chinese guys from the year 4660 :-) |
|||
|
|
|
|
Since code wants to be wrong, a solution that solves this problem in more than a few lines is a problem. I think Jeff's original solution or Mike Polen's slightly revised solution are best. The others are over-engineered. |
||
|
|
|
|
Mike's is the best answer so far and may actually be pretty close to optimal. Everything else is over-engineered yet still not sufficiently accurate. Some of these solutions miss situations like Feb. 29th birthdays, years with leap seconds, etc. Mike's takes all of those into account through the DateTime class and is very concise and readable as well. |
||
|
|
|
|
This is the version we use here. It works, and its fairly simple. Its the same idea as Jeff's but I think its a little clearer because it separates out the logic for subtracting one, so its a little easier to understand.
You could expand the ternary operator to make it even clearer, if you think that sort of thing is unclear. Obviously this is done as an extension method on DateTime, but clearly you can grab that one line of code that does the work and put it anywhere. Here we have another overload of the Extension method that passes in DateTime.Now, just for completeness. |
||||
|
|
|
This is a strange way to do it, but if you format the date to yyyymmdd and subtract the date of birth from the current date then drop the last 4 digits you've got the age :) I don't know c#, but i believe this will work in any language. 20080814 - 19800703 = 280111 drop the last 4 digits = 28 |
||||||||
|
|
|
I don't think any of the answers so far provide for cultures that calculate age differently. See, for example, East Asian Age Reckoning versus that in the West. Any real answer has to include localization. The Strategy Pattern would probably be in order in this example. |
||||
|
|
|
I have created a SQL Server User Defined Function to calculate someone's age, given their birthdate. This is useful when you need it as part of a query:
|
||
|
|
|
|
Hi all I think the TimeSpan has all that we need in it, without having to resort to 365.25 (or any other approximation). Expanding on Aug's example: DateTime myBD = new DateTime(1980, 10, 10); TimeSpan difference = DateTime.Now.Subtract(myBD); textBox1.Text = difference.Years + " years " + difference.Months + " Months " + difference.Days + " days"; |
||
|
|
|
My suggestion
That seems to have the year changing on the right date. (I spot tested up to age 107) |
||||||||||
|
|
|
when talking about ages, i make certain that i test with leap years. calculating age, that includes days, isn't so easy i think. if your birthday is 02/29/1964 how old will you be on 3/1/2009 in years and days? this is a good test i think. |
|||
|
|
|
|
I've spent some time working on this and came up with this to calculate someone's age in years, months and days. I've tested against the Feb 29th problem and leap years and it seems to work, I'd appreciate any feedback:
|
|||
|
|
|
|
late to the party, but here's a one liner
|
||
|
|
|
|
Here is a solution.
|
||
|
|
|
|
Hi! I don't know how can be the wrong solution accepted. Correct C# snippet was written by Michael Stum Here is a test snippet:
here you are the methods:
Marian |
||
|
|
