The .NET coding standards PDF from SubMain that have started showing up in the "Sponsored By" area seems to indicate that properties are only appropriate for logical data members (see pages 34-35 of the document). Methods are deemed appropriate in the following cases:
- The operation is a conversion, such as Object.ToString().
- The operation is expensive enough that you want to communicate to the user that they should consider caching the result.
- Obtaining a property value using the get accessor would have an observable side effect.
- Calling the member twice in succession produces different results.
- The order of execution is important.
- The member is static but returns a value that can be changed.
- The member returns an array.
Do most developers agree on the properties vs. methods argument above? If so, why? If not, why not?
