类别:程序开发
日期:2021-02-25 浏览:2372 评论:0
public int GetAgeByBirthdate(DateTime birthdate) { DateTime now = DateTime.Now; int age = now.Year - birthdate.Year; if (now.Month < birthdate.Month || (now.Month == birthdate.Month && now.Day < birthdate.Day)) { age--; } return age < 0 ? 0 : age; }
本文标题:C# 根据出生日期(年月日)计算年龄
本文链接:https://vtzw.com/post/604.html
版权声明:本文不使用任何协议授权,您可以任何形式自由转载或使用。
发表评论 / 取消回复