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.com 2009-11-26T13:18:52Z http://stackoverflow.com/feeds/question/164023 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/164023/what-guidelines-are-appropriate-for-determining-when-to-implement-a-class-member 5 What guidelines are appropriate for determining when to implement a class member as a property versus a method? Scott A. Lawrence 2008-10-02T19:07:30Z 2008-10-09T18:15:14Z <p>The <a href="http://submain.com/landing/codeit.right/?utm_campaign=codeit.right&amp;utm_medium=textad&amp;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#164051 1 Answer by Guy Starbuck for What guidelines are appropriate for determining when to implement a class member as a property versus a method? Guy Starbuck 2008-10-02T19:13:43Z 2008-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#164070 0 Answer by Michael Damatov for What guidelines are appropriate for determining when to implement a class member as a property versus a method? Michael Damatov 2008-10-02T19:18:50Z 2008-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#164136 3 Answer by Joe for What guidelines are appropriate for determining when to implement a class member as a property versus a method? Joe 2008-10-02T19:31:47Z 2008-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#164179 0 Answer by Thom for What guidelines are appropriate for determining when to implement a class member as a property versus a method? Thom 2008-10-02T19:41:58Z 2008-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#164762 0 Answer by Greg for What guidelines are appropriate for determining when to implement a class member as a property versus a method? Greg 2008-10-02T21:49:10Z 2008-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>