码迷,mamicode.com
首页 > 其他好文 > 详细

C#根据出生日期计算年龄

时间:2014-10-09 03:16:38      阅读:185      评论:0      收藏:0      [点我收藏+]

标签:c#   年龄   出生日期   return   public   

public int CalculateAge(DateTime birthDate, DateTime now)
        {
            int age = now.Year - birthDate.Year;
            if (now.Month < birthDate.Month || (now.Month == birthDate.Month && now.Day < birthDate.Day))
            {
                age--;
            }
            return age;
        }

C#根据出生日期计算年龄

标签:c#   年龄   出生日期   return   public   

原文地址:http://1030967291.blog.51cto.com/6293718/1561277

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!