vote up 10 vote down star
1

Which is the best book for .NET coding guidelines?

flag

37% accept rate

9 Answers

vote up 10 vote down

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|flag
vote up 2 vote down

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|flag
+1 There's also a 9 page digest free online. code.msdn.microsoft.com/fds/Release/… – MarkJ Jul 31 at 1:38
vote up 0 vote down

+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|flag
vote up 2 vote down

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|flag
vote up 1 vote down

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

link|flag
vote up 0 vote down

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|flag
vote up 1 vote down

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

link|flag
vote up 0 vote down

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

link|flag

Your Answer

Get an OpenID
or

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