How do you decide whether something should be a method or property?
|
|
|||
|
closed as exact duplicate by splattne Jan 15 at 21:48 |
|
|
I choose property if ...
Otherwise I make it a method |
||
|
|
|
|
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. |
||
|
|
|
|
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). |
||||
|
|
|
Well as far as the CLR cares there are no such things as properties as the C# compiler turns properties into 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. |
||
|
|
|
|
See this duplicate question: http://stackoverflow.com/questions/164527/exposing-member-objects-as-properties-or-methods-in-net |
||
|
|
|
|
See my answer to another similar question. But in summary:
|
||
|
|
|
|
For one thing, property getters should be side-effect free. |
||
|
|
|
|
Property = Access state of object |
||
|
|
