The design guidelines for developing class libraries are for library development that extends and interacts with the .NET Framework. The goal of the .NET Framework design guidelines is to help library designers ensure that their users reap the benefits of API consistency and ease of use by providing a unified programming model that is independent of the programming language used for development. It is strongly recommended that you follow these design guidelines when developing classes and components that extend the .NET Framework. Inconsistent library design adversely affects developer productivity and discourages adoption.
These guidelines are intended to help class library designers understand the trade-offs between different solutions. There might be situations where good library design requires that you violate these design guidelines. Such cases should be rare, and it is important that you have a clear and compelling reason for your decision.
Portions Copyright 2005 Microsoft Corporation. All rights reserved.
Portions Copyright Addison-Wesley Corporation. All rights reserved.
For more information on design guidelines, see the "Framework Design Guidelines: Conventions, Idioms, and Patterns for Reusable .NET Libraries" book by Krzysztof Cwalina and Brad Abrams, published by Addison-Wesley, 2005.
Reference
I agree with both OOBoyWonder and DamonWilderCarr, although i have to say that something is missing. And that something happens to be "Private and internal field capitalization convention".
Apart from that, Microsoft has really done a fine piece of work. This kind of content should become mandatory reading material for every developer, young and old.
Hugo Durana.
Portions Copyright 2005 Microsoft Corporation. All rights reserved.
Portions Copyright Addison-Wesley Corporation. All rights reserved.
For more information on design guidelines, see the "Framework Design Guidelines: Conventions, Idioms, and Patterns for Reusable .NET Libraries"book by Krzysztof Cwalina and Brad Abrams, published by Addison-Wesley, 2005.
If you want your own copy, refer to book they noted above. Portions of this material is from the book.
http://blogs.msdn.com/kcwalina/archive/2008/10/27/9018557.aspx
I also suggest you buy a copy of Krzysztof Cwalina's book on how the Framework APIs themselves were designed. Knowing how and why it was designed the way it was, gave me a keener insight on how to better leverage what the FCL offered. Plus, FxCop began barking at me far less.
http://blogs.msdn.com/kcwalina/archive/2007/03/29/1989896.aspx
He gave a lecture about the content of the book.
This is a 'guide' to what is essential a 'guide' (a framework is essentially making software development easier, faster, less prone to error, less prone to have people perform 'copy/paste' reuse, etc. etc.
Anyway glad to see this up.
Damon Wilder Carr