Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Duplicate

How Can I calculate Someone's Age in C#?

I have a datetime variable that represents the date of birth of a user.

How can I get the age in years from this?

Update I want a precise birthday, so 30.45 years or something.

share|improve this question
Dupe : stackoverflow.com/questions/9/… – Bobby Cannon Mar 23 '09 at 14:03
Exact duplicate of stackoverflow.com/questions/9/… – Ian Nelson Mar 23 '09 at 14:04

marked as duplicate by cgreeno, Ian Nelson, Galwegian, Gavin Miller, M4N Mar 23 '09 at 14:05

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

3 Answers

Stolen from the answer to Jeff's question:

DateTime now = DateTime.Now;
int age = now.Year - bday.Year;
if (now < bday.AddYears(age)) age--;
share|improve this answer

Try the following (assuming the date of birth is stored in dtDOB):

public int getAgeInYears {
  TimeSpan tsAge = DateTime.Now.Subtract(dtDOB);

  return new DateTime(tsAge.Ticks).Year - 1;
}
share|improve this answer
This wrong! DateTime.Subtract() returns a Timespan, not a DateTime. – M4N Mar 23 '09 at 14:11

You can try with (in Vb):

    Dim dateOfBirth As Date

    Now.Subtract(dateOfBirth).TotalDays \ 365

\ is an Integer division in Vb, I do not know if it has a correspondant in C#.

share|improve this answer