vote up 1 vote down star

In C# 3.0, I'm doing the code below to declare a DateTime property and a int age property that is read only.

public class MyClass{
    public DateTime dateOfBirth{ get; set; }
    public int age { get; }

    public MyClass(){}

    public int CalculateAge(){}
}

But how can I get this updated age (that it's read only) when someone enters his date of birth in a form, for example?

flag

41% accept rate
2  
I didn't even know that it was possible to declare an auto-implemented property without a set-block (private would be fine) since you can never initialize the property. – Cecil Has a Name Sep 3 at 19:39
2  
It's not possible to do this - the compiler will complain, precisely for the reason you give. – Pavel Minaev Sep 3 at 19:40

8 Answers

vote up 6 vote down check

Don't store the age, instead calculate it when get of the age property is executed:

public int Age { get { return 100; } }

But instead of returning 100, you do the calculation.

link|flag
I've tried to do that but in my CalculateAge method it says that Age cannot be assigned because it's read only. – AndreMiranda Sep 3 at 19:41
2  
He said 'don't store the age...' – n8wrl Sep 3 at 19:45
Thanks! It worked for me! – AndreMiranda Sep 3 at 19:51
vote up 8 vote down

You need to implement the "age" property so it works off the dateOfBirth property:

public int age { 
    get {
         return (DateTime.Now - this.dateOfBirth).Days / 365;
    }
}
link|flag
i'm sure there's a better way to determine the age. leap years and all ... – oɔɯǝɹ Sep 3 at 20:27
yeah - well, I was just trying to show the technique, not the specifics. – Reed Copsey Sep 3 at 20:28
vote up 2 vote down

You can't use an auto readonly property for this. You'll have to implement the property. You might also consider using a TimeSpan instead of int, since it will be more versatile.

public TimeSpan Age 
{ 
    get 
    { 
        return DateTime.Now - this.dateOfBirth; 
    } 
}
link|flag
vote up 2 vote down

Instead of having Age be an automatic property, implement an age calculator.

public class MyClass {
    public DateTime DateOfBirth { get; set; }
    public int Age { 
        get {
            DateTime now = DateTime.Now;
            int age = now.Year - DateOfBirth.Year;
            if(now < DateOfBirth.AddYears(age)) age--;
            return age;
        }
    }
}

You should probably refactor the above calculation out into a method, but the above demonstrates the salient point.

link|flag
vote up 1 vote down

As Svinto says, calculate the age and return that in the get method of your Age property. See How do I calculate someone's age in C#? on SO for ideas on how to do this.

link|flag
vote up 1 vote down

In case you want a property which only you can assign, but which anyone can read:

public class MyClass
{
    public int Age { get; private set; }
}

Then your class can assign Age, but other classes can only read it.

link|flag
vote up 0 vote down

Put your code to calculate the age in your age property.

For example:

public int Age
{
     get
     {
          return (age code here);
     }
}
link|flag
that won't compile. You can't implicitly convert a timespan to an int. – Reed Copsey Sep 3 at 19:39
Yeah, I realized that right after I posted it. – darkassassin93 Sep 3 at 19:40
@Reed Copsey - there is no timespan in dark's code; it just says 'age code here' in the return. the actual code for computing the integer age value goes in the parantheses. – JeremyDWill Sep 3 at 19:44
Ah, dark must have edited his response - sorry. – JeremyDWill Sep 3 at 19:45
vote up 0 vote down

Why not change your implementation a little:

public class MyClass
{
    public DateTime DateOfBirth {get; set;}
    public int Age
    {
        get
        {
            return this.CalculateAge();
        }
    }
}
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.