vote up 2 vote down star

How do you decide whether something should be a method or property?

flag

60% accept rate

closed as exact duplicate by splattne Jan 15 at 21:48

8 Answers

vote up 2 vote down

I choose property if ...

  1. It's a thin wrapper around a field that I wish to expose publically
  2. It's a small calculation against other properties or fields which has no side effects. For Example.

    public int Age { get { (DateTime.Now - _birthday).TotalYears; } }

Otherwise I make it a method

link|flag
vote up 1 vote down

Put very briefly:

If the piece of code in question is reflecting the current state of the object, it should be a property.

If it's performing an action upon the object, it should be a method.

link|flag
vote up 1 vote down

Methods are behaviour. Properties are state.

Cars have colours, number of wheels, number of doorts, etc (state).

Cars turn on and off, turn left and right, go faster, brake, etc (behaviour).

link|flag
Cars go faster, but also have speed that can be adjusted. It really is a very fine line sometimes. – Joel Coehoorn Jan 15 at 21:49
Putting your foot on the accelerator/brake is behaviour. It results in a change in state (speed). – cletus Jan 15 at 21:52
vote up 1 vote down

Well as far as the CLR cares there are no such things as properties as the C# compiler turns properties into get_Foo() and set_Foo() methods. So there is no performance benefit to one approach or the other.

However callers of your code will tend to think that a property encapsulates less processing then a method so I would use methods for expensive and long-running operations and properties for encapsulating fields and minimal processing.

link|flag
vote up 0 vote down

See my answer to another similar question. But in summary:

  • If getting the value mutates the internal state of the object, it should be a method, otherwise it should be a property.
  • If setting the value causes a long-running operation and/or alters anything beyond the internal state of the object in a non-trivial manner, it should be a method, otherwise it should be a property.
link|flag
vote up 0 vote down

For one thing, property getters should be side-effect free.

link|flag
vote up 0 vote down

Property = Access state of object
Method = Run action on object

link|flag

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