在C#中,如何根据DateTime类型的生日计算某人的年龄?

给定一个DateTime人的生日,我如何计算他们的年龄(以岁为单位)?

回答:

一个易于理解和简单的解决方案。

// Save today's date.

var today = DateTime.Today;

// Calculate the age.

var age = today.Year - birthdate.Year;

// Go back to the year the person was born in case of a leap year

if (birthdate.Date > today.AddYears(-age)) age--;

但是,这假设您正在寻找 西方 的年龄观念,而不是使用

东亚估算

以上是 在C#中,如何根据DateTime类型的生日计算某人的年龄? 的全部内容, 来源链接: utcz.com/qa/420411.html

回到顶部