私が基本的に望んでいるのは、カレンダーを変換することです。SelectedDateを年齢に変換するのは、年、日、時間Response.Wirte()です。
あなたのbithdayがであるならば:19-09-1995 (DD/MM/YYYY)
それはそうするでしょうResponse.Write
年齢:18歳 日数:18 * 365 + 3 = 6573 日時間:6573 * 24 = 157752
しかし、今年は別の日に動作する必要があるので、誕生日が昨日だった場合
        string date = "19-09-1995";
        DateTime birthday = DateTime.ParseExact(date, "d-M-yyyy", CultureInfo.InvariantCulture);
        TimeSpan difference = DateTime.Now.Date - birthday;
        int years = (int)difference.TotalDays / 365;
        int days = (int)difference.TotalDays;
        int hours = (int)difference.TotalHours;
        String answer = String.Format("Age: {0} years", years);
        answer += Environment.NewLine;
        answer += String.Format("Days: {0}*365+{1} = {2}", years, days - years * 365, days);
        answer += Environment.NewLine;
        answer += String.Format("Days Hours: {0}*24 = {1}", hours / 24, hours);
ただし、うるう年はカウントされないため、この情報は正しくありません。
そして、このコードは、世界にうるう年などというものがないことを前提としています :)
private string GetAnswer()
{
    DateTime birthday = calBirthDate.SelectedDate;
    TimeSpan difference = DateTime.Now.Date - birthday;
    int leapYears = CountLeapYears(birthday);
    int days = (int)difference.TotalDays - leapYears;
    int hours = (int)difference.TotalHours - leapYears * 24;
    int years = days / 365;
    String answer = String.Format("Age: {0} years", years);
    answer += Environment.NewLine;
    answer += String.Format("Days: {0}*365+{1} = {2}", years, days - years * 365, days);
    answer += Environment.NewLine;
    answer += String.Format("Days Hours: {0}*24 = {1}", hours / 24, hours);
    return answer;
}
private int CountLeapYears(DateTime startDate)
{
    int count = 0;
    for (int year = startDate.Year; year <= DateTime.Now.Year; year++)
    {
        if (DateTime.IsLeapYear(year))
        {
            DateTime february29 = new DateTime(year, 2, 29);
            if (february29 >= startDate && february29 <= DateTime.Now.Date)
            {
                count++;
            }
        }
    }
    return count;
}