Which is the best book for .NET coding guidelines?
|
closed as not constructive by Bill the Lizard♦ Jun 10 '12 at 15:49
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.
|
Microsoft's Framework Design Guidelines, by Krzysztof Cwalina and Brad Abrams. It has a nice chapter on C# coding conventions. You can get it in the MSDN library. |
||||
|
|
|
Forget books, just use FxCop.
It's based upon the Design Guidelines for Class Library Developers. You could just print those out if you want a book. |
|||
|
|
|
I would check out Practical Guidelines and Best Practices for Microsoft Visual Basic and Visual C# Developers.
|
|||
|
|
|
There can be only one: Framework Design Guidelines: Conventions, Idioms, and Patterns for Reusable .NET Libraries
The second edition is on the way out also. The book covers the guidelines on creating Frameworks in .NET, but also specific code conventions in C#. It's also a great resource to understand how to structure your .NET-code in general. Since it comes directly from Microsoft it's a good baseline for the conventions and guidelines companies should use when developing in .NET. Especially when different developers have different ways to do things. There are complementary tools, which enforces guidelines in the book: |
|||
|
|
|
I consider the book my Krzysztof Cwalina and Brad Abrams mentioned above by TraumaPony to be the definitive .NET guidelines book. In fact I tend to refer to is as "the bible" and use it to wave at people whenever they try to make a case for alternative approaches. There is a second edition either out now or soon so worth checking that one out. |
||||
|
|
How about SubMain's coding standards. They're available as a free download from the sponsored link at the right there. |
|||
|
|
|
You can consider using StyleCop (http://blogs.msdn.com/sourceanalysis/) |
|||
|
|
|
+1 for Practical Guidelines and Best Practices. I've also gotten some mileage out of Enterprise Solution Patterns for Microsoft .net framework. (Bonus: it's free) |
|||
|
|
|
The best guidelines book is the one that all your teammates have read and wholeheartedly agreed with. |
|||
|
|

