Never been to DZone Snippets before?

Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world

About this user

Edgardo Rossetto

« Newer Snippets
Older Snippets »
Showing 1-1 of 1 total  RSS 

Calculate age in C#

using System;
using System.Data;

public static class Snippets
{
    public static int CalculateAge(DateTime birthdate)
    {
        // get the difference in years
        int years = DateTime.Now.Year - birthdate.Year;
        // subtract another year if we're before the
        // birth day in the current year
        if (DateTime.Now.Month < birthdate.Month || (DateTime.Now.Month == birthdate.Month && DateTime.Now.Day < birthdate.Day))
            years--;

        return years;
    }
}
« Newer Snippets
Older Snippets »
Showing 1-1 of 1 total  RSS