vote up 1 vote down star
1

I am new to c# just trying to mess with it to teach it to myself. I know java and would normally put in getter/setter methods. I am interested in doing it with the following code, but it throws a stack overflow. What am I doing wrong

Calling Code

c.firstName = "a";

Property Code

        public String firstName;
        {
            get
            {
                return firstName;
            }
            set
            {
                firstName = value;
            }
        }

flag

4 Answers

vote up 20 vote down check

It's because you're recursively calling the property - in the set you are setting the property again, which continues ad infinitum until you blow the stack.

You need a private backing field to hold the value, e.g.

private string firstName;

public string FirstName;
{
    get
    {
        return this.firstName;
    }
    set
    {
        this.firstName = value
    }
}

Alternatively, if you're using C# 3.0, you could use an auto-property, which creates a hidden backing field for you, e.g.

public string FirstName { get; set; }
link|flag
vote up -2 vote down

Great Answer !!! It works !!!

link|flag
This is not an answer, so please don't post it as such. If you would like to praise the author, leave a comment on the answer. – Lucas Jones Aug 29 at 8:35
vote up -2 vote down

Thanks Guys!

link|flag
vote up 6 vote down

You are setting the property name inside your property--not the field name. This would work better:

private m_firstName;

public String firstName;
{
    get
    {
        return m_firstName;
    }
    set
    {
        m_firstName = value;
    }
}
link|flag
1  
I've made this error myself... – Michael Haren Dec 15 '08 at 0:15
It's even more fun when you find one in a third party's library code... – Andrew Kennan Dec 15 '08 at 0:38

Your Answer

Get an OpenID
or

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