Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Please explain how C# properties work?

Tags:

c#

properties

I've been learning C# for a while now, and I've come across properties in my C# book (Head First C#). I honestly do not understand what they're used for, and why I should use them. I've googled them a few times but still cannot for the life of me understand them.

Can someone please explain to me this foreign concept?

Thanks,

Varmitharen

like image 312
Varmitharen Avatar asked Jun 25 '11 08:06

Varmitharen


3 Answers

Properties provide controlled access to data; at the most basic, it can just mean encapsulating a field (public fields are not recommended), which the compiler can make easy for you:

public int Foo {get;set;} // the compiler handles the field for you

You could, however, use the property to enforce logic or handle side effects:

private int foo;
public int Foo {
    get { return foo; }
    set {
        if(value < 0) throw new ArgumentOutOfRangeException();
        if(value != foo) {
            foo = value;
            OnFooChanged(); // fire event notification for UI bindings
        }
    }
}

Other common options are lazy-loading, calculated members, proxied members, etc.

You can also change the accessibility, for example:

public int Foo { get; protected set; }

which can only be assigned by the type and subclasses, not by unrelated code. It could also only have a get or set.

Basically, properties act as a more formal version of a get/set pair of methods, making it much easier to talk about "Foo", rather than "get_Foo"/"set_Foo" etc (for two-way binding).

Unlike fields, properties can also be advertised on interfaces, which is essential for interface-based code

like image 79
Marc Gravell Avatar answered Oct 24 '22 03:10

Marc Gravell


Though the other answers are pretty good, they are all very much about the mechanism of properties. It is also helpful to understand the philosophy of properties.

In OO programming we spend a lot of time building models of semantic domains. When you say that you have a class "Animal" and a derived class "Tiger", you're modeling in the computer realm a fact about the real world: that of all things in the world, some of them are animals, and of those animals, some of them are tigers.

But you have to understand that the mechanism and the semantics are different. No one says "hey, let's go to the zoo and watch the instances of zookeeper invoke methods on IFeedable on the instances of the tigers".

A field is a mechanism and therefore should be a private implementation detail of a class; it does not describe part of the model. A property is a part of the semantic model. Every tiger has a birthday, so "Birthday" should be a property of the Tiger class. That's part of the "semantic model" of tigers, so expose it as a property. As an implementation detail, the birthday might be stored in a private field accessed by the property.

Does that make sense? In short: use public properties to describe the semantic properties of the things you are modeling; use private fields as implementation mechanisms.

like image 39
Eric Lippert Avatar answered Oct 24 '22 01:10

Eric Lippert


Properties are used to enrich the Encapsulation concept of Object-Oriented Programming.

i.e. They encapsulate a field-member and let you (the developer) control how setting/getting this variable is done. Example?

public class Person
{
    private int m_age;

    public int Age
    {
        set
        {
            if(value < 18)
                m_age = 18;
            else
                m_age = value;
        }
        get
        {
            return m_age;
        }
    }
}

See? using property Age, we guaranteed that the minimum set value of age is 18.

like image 41
Ken D Avatar answered Oct 24 '22 01:10

Ken D