Framework Design Guidelines: Conventions, Idioms, And Patterns for Reusable .net Libraries Har/Dvdr Edition
|
Krzysztof Cwalina
(Author)
Find all the books, read about the author, and more.
See search results for this author
|
|
Brad Abrams
(Author)
Find all the books, read about the author, and more.
See search results for this author
|
Use the Amazon App to scan ISBNs and compare prices.
There is a newer edition of this item:
Customers who viewed this item also viewed
Customers who bought this item also bought
Editorial Reviews
About the Author
Krzysztof Cwalina is a Program Manager on the Common Language Runtime team at Microsoft Corporation. He began his career at Microsoft designing APIs for the first release of the .NET Framework. He has been responsible for several namespaces in the Framework, including System.Collections, System.Diagnostics, System.Messaging, and others. He was also one of the original members of the FxCop team. Currently, he is leading a companywide effort to develop, promote, and apply the design guidelines to the .NET Framework and WinFX. Krzysztof graduated with a B.S. and an M.S. in computer science from the University of Iowa.
Brad Abrams was a founding member of both the Common Language Runtime and .NET Framework teams at Microsoft, where he is currently a Lead Program Manager. Brad has been involved with WinFX and Windows Vista efforts from the beginning. His primary role is to ensure consistency and developer productivity of the .NET Framework through Vista and beyond. His popular blog can be found at http://blogs.msdn.com/BradA/.
Excerpt. © Reprinted by permission. All rights reserved.
This book, Framework Design Guidelines , presents best practices for designing frameworks, which are reusable object-oriented libraries. The guidelines are applicable to frameworks ranging in size and in their scale of reuse:
- Large system frameworks, such as the .NET Framework, usually consisting of thousands of types and used by millions of developers.
- Medium-size reusable layers of large distributed applications
- or extensions to system frameworks, such as the Web Services
- Enhancements.
- Small components shared among several applications; for example, a grid control library.
It is worth noting that this book focuses on design issues that directly affect the programmability of a framework (publicly accessible APIs). As a result, we generally do not cover much in terms of implementation details. Just like a user interface design book doesn't cover the details of how to implement hit testing, this book does not describe how to implement a binary sort, for example. This scope allows us to provide a definitive guide for framework designers instead of being yet another book about programming.
These guidelines were created in the early days of .NET Framework development. They started as a small set of naming and design conventions but have been enhanced, scrutinized, and refined to a point where they are generally considered the canonical way to design frameworks at Microsoft. They carry the experience and cumulative wisdom of thousands of developer hours over three versions of the .NET Framework. We tried to avoid basing the text purely on some idealistic design philosophies, and we think its day-to-day use by development teams at Microsoft has made it an intensely pragmatic book.
The book contains many annotations that explain trade-offs, explain history, amplify, or provide critiquing views on the guidelines. These annotations are written by experienced framework designers, industry experts, and users. They are the stories from the trenches that add color and setting for many of the guidelines presented.
To make them more easily distinguished in text, namespace names, classes, interfaces, methods, properties, and types are set in monospace font. The book assumes basic familiarity with .NET Framework programming. A few guidelines assume familiarity with features introduced in version 2.0 of the Framework. If you are looking for a good introduction to Framework programming, there are some excellent suggestions in the Suggested Reading List at the end of the book.
Guideline Presentation
The guidelines are organized as simple recommendations using Do, Consider, Avoid, and Do not. Each guideline describes either a good or bad practice and all have a consistent presentation. Good practices have a check mark in front of them, and bad practices have an X in front of them. The wording of each guideline also indicates how strong the recommendation is. For example, a Do guideline is one that should always1 be followed (all examples are from this book):
DO name custom attribute classes with the suffix "Attribute."
public class ObsoleteAttribute : Attribute { ... }
On the other hand, Consider guidelines should generally be followed, but if you fully understand the reasoning behind a guideline and have a good reason to not follow it anyway, you should not feel bad about breaking the rules:
CONSIDER defining a struct instead of a class if instances of the type are small and commonly short-lived or are commonly embedded in other objects.
Similarly, Do not guidelines indicate something you should almost never do:
DO NOT assign instances of mutable types to read-only fields.Less strong, Avoid guidelines indicate that something is generally not a good idea, but there are known cases where breaking the rule makes sense:
AVOID using ICollection
Some more complex guidelines are followed with additional background information, illustrative code samples, and rationale:
DO implement IEquatable
public struct Int32 : IEquatable
public bool Equals(Int32 other){ ... }
}
Language Choice and Code Examples
One of the goals of the Common Language Runtime is to support a variety of programming languages: those provided by Microsoft, such as C++, VB, and C#, as well as third-party languages such as Eiffel, COBOL, Python, and others. Therefore, this book was written to be applicable to a broad set of languages that can be used to develop and consume modern frameworks. To reinforce the message of multilanguage framework design, we considered writing code examples using several different programming languages. However, we decided against this. We felt that using different languages would help to carry the philosophical message, but it could force readers to learn several new languages, which is not the objective of this book.
We decided to choose a single language that is most likely to be readable to the broadest range of developers. We picked C#, because it is a simple language from the C family of languages (C, C++, Java, and C#), a family with a rich history in framework development.
Choice of language is close to the hearts of many developers, and we offer apologies to those who are uncomfortable with our choice.
About This Book
This book offers guidelines for framework design from the top down.Chapter 1 is a brief introduction to the book, describing the general philosophy of framework design. This is the only chapter without guidelines.
Chapter 2, "Framework Design Fundamentals," offers principles and guidelines that are fundamental to overall framework design.
Chapter 3, "Naming Guidelines," contains naming guidelines for various parts of a framework, such as namespaces, types, members, and common design idioms.
Chapter 4, "Type Design Guidelines," provides guidelines for the general design of types.
Chapter 5,"Member Design," takes it a step further and presents guidelines for the design of members of types. Chapter 6, "Designing for Extensibility," presents issues and guidelines that are important to ensure appropriate extensibility in your framework.
Chapter 7, "Exceptions," presents guidelines for working with exceptions, the preferred error reporting mechanisms.
Chapter 8, "Usage Guidelines," contains guidelines for extending and using types that commonly appear in frameworks.
Chapter 9, "Common Design Patterns," offers guidelines and examples of common framework design patterns.
Appendix A contains a short description of coding conventions used in this book. Appendix B describes a tool called FxCop. The tool can be used to analyze framework binaries for compliance with the guidelines described in this book. A link to the tool is included on the DVD that accompanies this book.
Appendix C is an example of an API specification that framework designers within Microsoft create when designing APIs.
Included with the book is a DVD that contains several hours of video presentations covering topics presented in this book by the authors, a sample API specification, and other useful resources.1.Always might be a bit too strong a word. There are guidelines that should literally be always followed, but they are extremely rare. On the other hand, you probably need to have a really unusual case for breaking a "Do" guideline and still have it be beneficial to the users of the framework.
Product details
- Publisher : Addison-Wesley Professional; Har/Dvdr edition (September 16, 2005)
- Language : English
- Hardcover : 346 pages
- ISBN-10 : 0321246756
- ISBN-13 : 978-0321246752
- Item Weight : 2.18 pounds
- Dimensions : 7.25 x 1.5 x 9.5 inches
-
Best Sellers Rank:
#2,540,835 in Books (See Top 100 in Books)
- #42 in Software Reuse
- #849 in Microsoft .NET
- #2,126 in Computer Networking (Books)
- Customer Reviews:
I'd like to read this book on Kindle
Don't have a Kindle? Get your Kindle here, or download a FREE Kindle Reading App.
About the authors

Discover more of the author’s books, see similar authors, read author blogs and more

Discover more of the author’s books, see similar authors, read author blogs and more
Customer reviews
Top reviews from the United States
There was a problem filtering reviews right now. Please try again later.
But whether this book deserves a five star rating or a one star rating - whether this book is for you - can be answered by asking yourself the following question: are you obsessed with quality? Quality in the sense of creating a library that is:
- Easily reused by others, even first timers encountering the library or even first timers to .Net
- Well thought out with well designed classes
- Consistent within itself and consistent with the base libraries from Microsoft
The importance of the little things like naming classes, properties, methods, using one type of construct over another, using one type of accessor over another, etc. cannot be stressed enough in the overall picture of creating a library to a higher standard of quality, usability, and extensibility.
As Confucius is to have said:
"If names be not correct, language is not in accordance with the truth of things. If language be not in accordance with the truth of things, affairs cannot be carried on to success.
"When affairs cannot be carried on to success, proprieties and music do not flourish. When proprieties and music do not flourish, punishments will not be properly awarded. When punishments are not properly awarded, the people do not know how to move hand or foot.
"Therefore a superior man considers it necessary that the names he uses may be spoken appropriately, and also that what he speaks may be carried out appropriately. What the superior man requires is just that in his words there may be nothing incorrect."
As I wrote in an e-mail to my team, I think that digesting this book will lead to: higher quality public facing APIs for our customer development teams seeking to extend the functionality, increased readability and more consistency internally in our teams, increased usability and decreased maintenance costs for the support teams as well as new developers on our team, and of course, increased skill, knowledge, and competency as developers of each of the team members.
I am already starting to present ideas from this book to my team at work. This will influence our next product release in a very good way.
The Framework Design Guidelines are different. These ensure deep consistency across not just source code, but more importantly the public classes themselves. They include critical, not to be ignored rules on security, cross-language access and localization, as well as the usual good practice type guidelines. But even these "good" practices are always backed with well reasoned argument and examples. As an added bonus FxCop provides a static analysis tool that enforces the guidelines.
Finally, the Framework Design Guidelines provide deep insight into how the .NET Frameworks are designed and used. With the guidelines in mind it is far easier to remember or even guess what classes are provided and how they should be used. This just makes the libraries that much more productive.
Full disclosure: I know Brad and Krzysztof personally, but I would simply remain silent if I didn't think highly of the work.
The authors are thoughtful and clear in their reasoning and highlight their own "lessons learned" with real examples of shipped code that in retrospect could have been done better.
Id like to see more diagrams or so, so we can se how they decide to build the things... but it still is great.
Top reviews from other countries
Wenn man das Prinzip und die Ideen und Überlegungen die hier vermittelt werden anschaut und verstanden hat, kann man diese meiner Ansicht nach auch relativ einfach auf andere Programmiersprachen und Frameworks anwenden. Alleine das Thema Naming-Conventions wird oft sehr unterschätzt aber ist meist mit einer der hilfreichsten Grundlage für eine Dokumentation + die schnelle und intuitive Nutzung eines Frameworks. Somit ist es aus meiner Sicht grundlegend mit für die User Experience bei der Nutzung eines Frameworks ausschlaggebend.
Während ich andere Bücher längst aussortiert haben werden, wird dieses Buch mich noch eine sehr lange Zeit begleiten und ich werde es auch immer als Grundlage weiterempfehlen.
I found it very easy to read and learned a lot that I am able to apply when working on class libraries within the company I work in.
I just wish Microsoft themselves would follow these rules more closely!
Reviewed in Canada on November 11, 2018



