Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
System.Nullable System.TimeSpan does not contain a def
Message
De
15/06/2010 10:09:47
 
 
À
Tous
Information générale
Forum:
ASP.NET
Catégorie:
Code, syntaxe and commandes
Titre:
System.Nullable System.TimeSpan does not contain a def
Divers
Thread ID:
01468950
Message ID:
01468950
Vues:
348
Hi,

I am trying to write a method that will calculate the age of someone. Here is my code:
        /// <summary>
        /// Calculates the Nearest Age
        /// </summary>
        /// <param name="birthDate">Date of Birth</param>
        /// <param name="currentDate">Current Date</param>
        /// <returns></returns>
        public Int GetAgeNearest(DateTime? birthDate, DateTime? currentDate)
        {
            int age = 0;
            if (birthDate != null && currentDate != null)
            {
                age = (int) ((currentDate - birthDate).TotalDays/365.25);
            }
            return age;
        }
And here is the error:
'System.Nullable<System.TimeSpan>' does not contain a definition for 'TotalDays' and no extension method 'TotalDays' accepting a first argument of type 'System.Nullable<System.TimeSpan>' could be found (are you missing a using directive or an assembly reference?)
The problem I guess is that I am allowing null values to be passed in (that is what the ? does at the end of the parameter type, isn't it).

How do I handle this?
Frank.

Frank Cazabon
Samaan Systems Ltd.
www.samaansystems.com
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform