Answers for "How do I calculate someone's age based on a DateTime type birthday?"

C#
0

How do I calculate someone's age based on a DateTime type birthday?

// Save today's date.
var today = DateTime.Today;

// Calculate the age.
var age = today.Year - birthdate.Year;

// Go back to the year in which the person was born in case of a leap year
if (birthdate.Date > today.AddYears(-age)) age--;
Posted by: Guest on July-01-2021

Code answers related to "How do I calculate someone's age based on a DateTime type birthday?"

C# Answers by Framework

Browse Popular Code Answers by Language