What guidelines are appropriate for determining when to implement a class member as a property versus a method? - Stack Overflow most recent 30 from stackoverflow.com2009-11-26T13:18:52Zhttp://stackoverflow.com/feeds/question/164023http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/164023/what-guidelines-are-appropriate-for-determining-when-to-implement-a-class-member5What guidelines are appropriate for determining when to implement a class member as a property versus a method?Scott A. Lawrence2008-10-02T19:07:30Z2008-10-09T18:15:14Z
<p>The <a href="http://submain.com/landing/codeit.right/?utm_campaign=codeit.right&utm_medium=textad&utm_source=stackoverflow" rel="nofollow">.NET coding standards PDF from SubMain</a> 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:</p>
<ul>
<li>The operation is a conversion, such as Object.ToString().
<li>The operation is expensive enough that you want to communicate to the user that they should consider caching the result.
<li>Obtaining a property value using the get accessor would have an observable side effect.
<li>Calling the member twice in succession produces different results.
<li>The order of execution is important.
<li>The member is static but returns a value that can be changed.
<li>The member returns an array.
</ul>
<p>Do most developers agree on the properties vs. methods argument above? If so, why? If not, why not?</p>
http://stackoverflow.com/questions/164023/what-guidelines-are-appropriate-for-determining-when-to-implement-a-class-member/164051#1640511Answer by Guy Starbuck for What guidelines are appropriate for determining when to implement a class member as a property versus a method?Guy Starbuck2008-10-02T19:13:43Z2008-10-02T19:13:43Z<p>Those are interesting guidelines, and I agree with them. It's interesting in that they are setting the rules based on "everything is a property except the following". That said, they are good guidelines for avoiding problems by defining something as a property that can cause issues later.</p>
<p>At the end of the day a property is just a structured method, so the rule of thumb I use is based on Object Orientation -- if the member represents data owned by the entity, it should be defined as a property; if it represents behavior of the entity it should be implemented as a method.</p>
http://stackoverflow.com/questions/164023/what-guidelines-are-appropriate-for-determining-when-to-implement-a-class-member/164070#1640700Answer by Michael Damatov for What guidelines are appropriate for determining when to implement a class member as a property versus a method?Michael Damatov2008-10-02T19:18:50Z2008-10-02T19:18:50Z<p>Fully agreed.</p>
<p>According to the coding guidelines properties are "nouns" and methods are "verbs". Keep in mind that a user may call the property very often while thinking it would be a "cheap" operation. </p>
<p>On the other side it's usually expected that a method may "take more time", so a user considers about caching method results.</p>
http://stackoverflow.com/questions/164023/what-guidelines-are-appropriate-for-determining-when-to-implement-a-class-member/164136#1641363Answer by Joe for What guidelines are appropriate for determining when to implement a class member as a property versus a method?Joe2008-10-02T19:31:47Z2008-10-09T18:15:14Z<p>They seem sound, and basically in line with MSDN member design guidelines:</p>
<p><a href="http://msdn.microsoft.com/en-us/library/ms229059.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/ms229059.aspx</a></p>
<p>One point that people sometimes seem to forget (*) is that callers should be able to set properties in any order. Particularly important for classes that support designers, as you can't be sure of the order generated code will set properties.</p>
<p>(*) I remember early versions of the Ajax Control Toolkit on Codeplex had numerous bugs due to developers forgetting this one.</p>
<p>As for "Calling the member twice in succession produces different results", every rule has an exception, as the property DateTime.Now illustrates.</p>
http://stackoverflow.com/questions/164023/what-guidelines-are-appropriate-for-determining-when-to-implement-a-class-member/164179#1641790Answer by Thom for What guidelines are appropriate for determining when to implement a class member as a property versus a method?Thom2008-10-02T19:41:58Z2008-10-02T19:41:58Z<p>What's so interesting about those guidelines is that they are clearly an argument for having extension properties as well as extension methods. Shame.</p>
http://stackoverflow.com/questions/164023/what-guidelines-are-appropriate-for-determining-when-to-implement-a-class-member/164762#1647620Answer by Greg for What guidelines are appropriate for determining when to implement a class member as a property versus a method?Greg2008-10-02T21:49:10Z2008-10-02T21:49:10Z<p>I never personally came to the conclusion or had the gut feeling that properties are fast, but the guidelines say they should be, so I just accept it.</p>
<p>I always struggle with what to name my slow "get" methods while avoiding FxCop warnings. GetPeopleList() sounds good to me, but then FxCop tells me it might be better as a property.</p>