Which is the best book for .NET coding guidelines?
|
1
|
|
|
|
|
|
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. |
||
|
|
|
|
I would check out Practical Guidelines and Best Practices for Microsoft Visual Basic and Visual C# Developers.
|
||
|
|
|
|
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. |
||
|
|
|
+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) |
||
|
|
|
|
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. |
||
|
|
|
|
How about SubMain's coding standards. They're available as a free download from the sponsored link at the right there. |
||
|
|
|
|
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: |
||
|
|
|
|
You can consider using StyleCop (http://blogs.msdn.com/sourceanalysis/) |
||
|
|
|
|
The best guidelines book is the one that all your teammates have read and wholeheartedly agreed with. |
||
|
|


