How has your coding standards document changed when you upgraded to C# 3.0 / VS2008? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T09:53:27Z http://stackoverflow.com/feeds/question/339952 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/339952/how-has-your-coding-standards-document-changed-when-you-upgraded-to-c-3-0-vs20 4 How has your coding standards document changed when you upgraded to C# 3.0 / VS2008? Trumpi 2008-12-04T09:02:08Z 2008-12-10T02:19:40Z <p>We are in the process of upgrading our projects from C# 2.0 / VS2005 to C# 3.0 / VS2008. As part of the upgrade, we are adding some items to our coding standards document.</p> <p>How would (or did) you change your coding standards document when upgrading from C# 2.0 / VS2005 to C# 3.0 / VS2008?</p> http://stackoverflow.com/questions/339952/how-has-your-coding-standards-document-changed-when-you-upgraded-to-c-3-0-vs20/339960#339960 2 Answer by Nath for How has your coding standards document changed when you upgraded to C# 3.0 / VS2008? Nath 2008-12-04T09:05:13Z 2008-12-04T09:05:13Z <p>The updgrade coincided with a new project, so when we moved we started using tools like StyleCop and FxCop which altered our coding standards. Also it handily enforces them too :o)</p> http://stackoverflow.com/questions/339952/how-has-your-coding-standards-document-changed-when-you-upgraded-to-c-3-0-vs20/340013#340013 1 Answer by lagerdalek for How has your coding standards document changed when you upgraded to C# 3.0 / VS2008? lagerdalek 2008-12-04T09:24:55Z 2008-12-04T09:24:55Z <p>Nothing should change per se due to the upgrade, though you may need to look at coding standards around new features, such as LINQ expressions, layout, Lambda versus query syntax.</p> http://stackoverflow.com/questions/339952/how-has-your-coding-standards-document-changed-when-you-upgraded-to-c-3-0-vs20/340028#340028 7 Answer by Jon Skeet for How has your coding standards document changed when you upgraded to C# 3.0 / VS2008? Jon Skeet 2008-12-04T09:32:24Z 2008-12-04T09:32:24Z <p>You could/should give advice about:</p> <ul> <li>When to use query expressions vs dot notation</li> <li>Any restrictions on the use of lambda expressions (e.g. "don't modify captured variables). (This could also apply to anonymous methods in C# 2 of course.)</li> <li>When to write extension methods</li> <li>When to use implicitly typed variables (<code>var</code>)</li> </ul> <p>The last two of these cause some controversy, particularly <code>var</code>.</p> <p>If your conventions give any design guidelines, I'd suggest that you also advise programmers to consider using delegates for specialisation where previously they might have used inheritance or interfaces. A good example of this is sorting - it's easier (and more readable) to use a projection to specify a sort order than to write an implementation of <code>IComparer&lt;T&gt;</code>.</p> http://stackoverflow.com/questions/339952/how-has-your-coding-standards-document-changed-when-you-upgraded-to-c-3-0-vs20/341401#341401 0 Answer by bcbeatty for How has your coding standards document changed when you upgraded to C# 3.0 / VS2008? bcbeatty 2008-12-04T17:20:04Z 2008-12-04T17:20:04Z <p>My standards for new features for 2008:</p> <ul> <li>Use var sparingly only with anonymous types.</li> <li>Encourage use of lambda expressions over delegates.</li> <li>Only use extension methods when you don't have control of the source code</li> </ul> http://stackoverflow.com/questions/339952/how-has-your-coding-standards-document-changed-when-you-upgraded-to-c-3-0-vs20/341485#341485 1 Answer by David Schmitt for How has your coding standards document changed when you upgraded to C# 3.0 / VS2008? David Schmitt 2008-12-04T17:42:46Z 2008-12-04T17:42:46Z <p>My personal pet peeve is the usage of <code>var</code> wherever "possible".</p> <p>"Possible" being currently defined as one of the following cases, mostly in order of decreasing neatness:</p> <p>Obvious, helping DRY:</p> <pre><code>var obj1 = new Something(); var obj2 = (Something)ObscureFunction(); var obj3 = ObscureStuff() as Something; </code></pre> <p>Guarded, I don't care as long as it compiles:</p> <pre><code>var obj4 = ObscureFunction(); foreach(Something s in obj4) { ... } </code></pre> <p>Complex Generics and almost any LINQ result:</p> <pre><code>var obj5 = ctx.GetQuery&lt;Something&gt;()..ToList(..)..GroupJoin(..)...ToLookup(...); </code></pre>