Which is the best book for .NET coding guidelines?

link|improve this question

39% accept rate
Aren't there any good books on How-do-you-do-it-best? for C# like Exceptional C++ or Effective C++ by Sutter/Meyers? I am looking too... – fmuecke Oct 14 '11 at 5:49
feedback

9 Answers

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.

link|improve this answer
feedback

Forget books, just use FxCop.

FxCop is an application that analyzes managed code assemblies (code that targets the .NET Framework common language runtime) and reports information about the assemblies, such as possible design, localization, performance, and security improvements. Many of the issues concern violations of the programming and design rules set forth in the Design Guidelines for Class Library Developers, which are the Microsoft guidelines for writing robust and easily maintainable code by using the .NET Framework.

It's based upon the Design Guidelines for Class Library Developers. You could just print those out if you want a book.

link|improve this answer
feedback

There can be only one:

Framework Design Guidelines: Conventions, Idioms, and Patterns for Reusable .NET Libraries

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:

link|improve this answer
feedback

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.

link|improve this answer
+1 There's also a 9 page digest free online. code.msdn.microsoft.com/fds/Release/… – MarkJ Jul 31 '09 at 1:38
feedback

How about SubMain's coding standards. They're available as a free download from the sponsored link at the right there.

link|improve this answer
feedback

You can consider using StyleCop (http://blogs.msdn.com/sourceanalysis/)

link|improve this answer
feedback

+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)

link|improve this answer
feedback

The best guidelines book is the one that all your teammates have read and wholeheartedly agreed with.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.