Difference between Property and Field in C# 3.0+

76,147

Solution 1

Encapsulation.

In the second instance you've just defined a variable, in the first, there is a getter / setter around the variable. So if you decide you want to validate the variable at a later date - it will be a lot easier.

Plus they show up differently in Intellisense :)

Edit: Update for OPs updated question - if you want to ignore the other suggestions here, the other reason is that it's simply not good OO design. And if you don't have a very good reason for doing it, always choose a property over a public variable / field.

Solution 2

Fields and properties look the same, but they are not. Properties are methods and as such there are certain things that are not supported for properties, and some things that may happen with properties but never in the case of fields.

Here's a list of differences:

  • Fields can be used as input to out/ref arguments. Properties can not.
  • A field will always yield the same result when called multiple times (if we leave out issues with multiple threads). A property such as DateTime.Now is not always equal to itself.
  • Properties may throw exceptions - fields will never do that.
  • Properties may have side effects or take a really long time to execute. Fields have no side effects and will always be as fast as can be expected for the given type.
  • Properties support different accessibility for getters/setters - fields do not (but fields can be made readonly)
  • When using reflection the properties and fields are treated as different MemberTypes so they are located differently (GetFields vs GetProperties for example)
  • The JIT Compiler may treat property access very differently compared to field access. It may however compile down to identical native code but the scope for difference is there.

Solution 3

A couple quick, obvious differences

  1. A property can have accessor keywords.

    public string MyString { get; private set; }
    
  2. A property can be overridden in descendents.

    public virtual string MyString { get; protected set; }
    

Solution 4

The fundamental difference is that a field is a position in memory where data of the specified type is stored. A property represents one or two units of code that are executed to retrieve or set a value of the specified type. The use of these accessor methods is syntactically hidden by using a member that appears to behave like a field (in that it can appear on either side of an assignment operation).

Solution 5

Accessors are more than fields. Others have already pointed out several important differences, and I'm going to add one more.

Properties take part in interface classes. For example:

interface IPerson
{
    string FirstName { get; set; }
    string LastName { get; set; }
}

This interface can be satisfied in several ways. For example:

class Person: IPerson
{
    private string _name;
    public string FirstName
    {
        get
        {
            return _name ?? string.Empty;
        }
        set
        {
            if (value == null)
                throw new System.ArgumentNullException("value");
            _name = value;
        }
    }
    ...
}

In this implementation we are protecting both the Person class from getting into an invalid state, as well as the caller from getting null out from the unassigned property.

But we could push the design even further. For example, interface might not deal with the setter. It is quite legitimate to say that consumers of IPerson interface are only interested in getting the property, not in setting it:

interface IPerson
{
    string FirstName { get; }
    string LastName { get; }
}

Previous implementation of the Person class satisfies this interface. The fact that it lets the caller also set the properties is meaningless from the point of view of consumers (who consume IPerson). Additional functionality of the concrete implementation is taken into consideration by, for example, builder:

class PersonBuilder: IPersonBuilder
{
    IPerson BuildPerson(IContext context)
    {

        Person person = new Person();

        person.FirstName = context.GetFirstName();
        person.LastName = context.GetLastName();

        return person;

    }
}

...

void Consumer(IPersonBuilder builder, IContext context)
{
    IPerson person = builder.BuildPerson(context);
    Console.WriteLine("{0} {1}", person.FirstName, person.LastName);
}

In this code, consumer doesn't know about property setters - it is not his business to know about it. Consumer only needs getters, and he gets getters from the interface, i.e. from the contract.

Another completely valid implementation of IPerson would be an immutable person class and a corresponding person factory:

class Person: IPerson
{
    public Person(string firstName, string lastName)
    {

        if (string.IsNullOrEmpty(firstName) || string.IsNullOrEmpty(lastName))
            throw new System.ArgumentException();

        this.FirstName = firstName;
        this.LastName = lastName;

    }

    public string FirstName { get; private set; }

    public string LastName { get; private set; }

}

...

class PersonFactory: IPersonFactory
{
    public IPerson CreatePerson(string firstName, string lastName)
    {
        return new Person(firstName, lastName);
    }
}
...
void Consumer(IPersonFactory factory)
{
    IPerson person = factory.CreatePerson("John", "Doe");
    Console.WriteLine("{0} {1}", person.FirstName, person.LastName);
}

In this code sample consumer once again has no knowledge of filling the properties. Consumer only deals with getters and concrete implementation (and business logic behind it, like testing if name is empty) is left to the specialized classes - builders and factories. All these operations are utterly impossible with fields.

Share:
76,147
Jester
Author by

Jester

Updated on January 28, 2020

Comments

  • Jester
    Jester over 4 years

    I realize that it seems to be a duplicate of What is the difference between a Field and a Property in C#? but my question has a slight difference (from my point of view):

    Once I know that

    • I will not use my class with "techniques that only works on properties" and
    • I will not use validation code in the getter/setter.

    Is there any difference (except the style/future development ones), like some type of control in setting the property?

    Is there any additional difference between:

    public string MyString { get; set; }
    

    and

    public string myString;
    

    (I am aware that, that the first version requires C# 3.0 or above and that the compiler does create the private fields.)

  • Serge Wautier
    Serge Wautier about 15 years
    Wrong. XML Serialization DOES serialize public fields.
  • Serge Wautier
    Serge Wautier about 15 years
    Why will it be easier? What prevents me from turning a field into a property and add an private backing field? How does this affect calling code?
  • Jester
    Jester about 15 years
    mmh.. nr 2 is interesting.. i didn't thought of it
  • Dustin Campbell
    Dustin Campbell about 15 years
    @Serge - It affects already compiled code. For example, if you are developing a library that is used by several applications, changing a field to a property in that library would require a recompile of each application. If it were a property, you could update the property without worry.
  • Lemon
    Lemon about 15 years
    Maybe. But when you create an Object Data Source from a class, you only get to use the properties, not the fields. (Unless I have done something wrong :P)
  • Jester
    Jester about 15 years
    I totally agree with you, I use always properties. I was just curious about a possible difference
  • ShuggyCoUk
    ShuggyCoUk about 15 years
    If consuming code is always recompiled at the same time as the affected class (so anything private or internal without internals visible to is 100% safe) then making it a field is perfectly OK
  • Jester
    Jester about 15 years
    wow Shuggy your comment is exactly the answer i was looking for!
  • ShuggyCoUk
    ShuggyCoUk about 15 years
    ah well should have made it an answer ;)
  • ShuggyCoUk
    ShuggyCoUk about 15 years
    :) I thought of this when I saw that
  • Noldorin
    Noldorin over 12 years
    Note however that several of these points should not be differences if good practices are employed. That is, properties really should never have side effects, nor should they take a long time to execute.
  • Brian Rasmussen
    Brian Rasmussen about 12 years
    @Noldorin: I agree, but unfortunately should is the keyword here. With fields that behavior is guaranteed. I'm not saying you should use fields, but it is important to be aware of the semantic differences.
  • Noldorin
    Noldorin about 12 years
    Yeah, fair enough. Beginner programmers don't have a clue about these things oftentimes, unfortunately...
  • Dio F
    Dio F about 11 years
    Also, fields may have a field initializer while properties have to be initialized in a constructor.
  • styfle
    styfle almost 11 years
    @ShuggyCoUk This is the answer I was looking for.
  • David Peterson
    David Peterson over 10 years
    I feel this answer is magnitudes better than the accepted answer. I'm starting to think that the "acceptable" way of always preferring properties over fields is bad thinking. If you only need to deal with data, use a field. If you need to apply functionality to data, use a method. Since properties may have side-effects you are not aware (especially if you didn't design the library and have little documentation), they seem counter intuitive to me in most cases.
  • Nicholas Petersen
    Nicholas Petersen over 9 years
    +1 David to: "I'm starting to think that the 'acceptable' way of always preferring properties over fields is bad thinking.", not because I fully agree, but because I can't stand it when everyone bah's like a bunch of sheep and do something one way because that's what they are "supposed" to do. I've wondered if things have gone a little to far on this issue. As an aside: I would be interested though if the compiler team can speed up property access calls for simple property get/set types (when no other processing exists).
  • Jacek Cz
    Jacek Cz over 8 years
    "always" is a liitle to hard word. In C# (better than in Java) property has strong position, is (probably without exception) main / method of "binding" in ASP, WPF and others. But nonetheless I can imagine design with field no being property has sense (sometimes)
  • Jacek Cz
    Jacek Cz over 8 years
    Good is to DRY ;) but i write once again, I like strong role of property in C# language . Is much better implemented than in Java (consequently from the beginning) Many, maybe all .net solutions work on properties only. WPF, ASPX and more.
  • Jacek Cz
    Jacek Cz over 8 years
    Good is to DRY ;) but i write once again, I like strong role of property in C# language . Is much better implemented than in Java (consequently from the beginning) Many, maybe all .net solutions work on properties only. WPF, ASPX and more.
  • Andy
    Andy over 8 years
    @DavidPeterson Then you'd probably be happier using C and its structs to pass data to functions.
  • Caleth
    Caleth almost 5 years
    I'd argue that there isn't an encapsulation difference between public string MyString { get; set; } and public string myString;