Download the free Kindle app and start reading Kindle books instantly on your smartphone, tablet, or computer - no Kindle device required.
Read instantly on your browser with Kindle for Web.
Using your mobile phone camera - scan the code below and download the Kindle app.
Follow the authors
OK
Framework Design Guidelines: Conventions, Idioms, and Patterns for Reuseable .NET Libraries 2nd Edition
There is a newer edition of this item:
$52.11
(31)
Usually ships within 6 to 7 days
Purchase options and add-ons
Framework Design Guidelines, Second Edition, teaches developers the best practices for designing reusable libraries for the Microsoft .NET Framework. Expanded and updated for .NET 3.5, this new edition focuses on the design issues that directly affect the programmability of a class library, specifically its publicly accessible APIs.
This book can improve the work of any .NET developer producing code that other developers will use. It includes copious annotations to the guidelines by thirty-five prominent architects and practitioners of the .NET Framework, providing a lively discussion of the reasons for the guidelines as well as examples of when to break those guidelines.
Microsoft architects Krzysztof Cwalina and Brad Abrams teach framework design from the top down. From their significant combined experience and deep insight, you will learn
- The general philosophy and fundamental principles of framework design
- Naming guidelines for the various parts of a framework
- Guidelines for the design and extending of types and members of types
- Issues affecting–and guidelines for ensuring–extensibility
- How (and how not) to design exceptions
- Guidelines for–and examples of–common framework design patterns
Guidelines in this book are presented in four major forms: Do, Consider, Avoid, and Do not. These directives help focus attention on practices that should always be used, those that should generally be used, those that should rarely be used, and those that should never be used. Every guideline includes a discussion of its applicability, and most include a code example to help illuminate the dialogue.
Framework Design Guidelines, Second Edition, is the only definitive source of best practices for managed code API development, direct from the architects themselves.
A companion DVD includes the Designing .NET Class Libraries video series, instructional presentations by the authors on design guidelines for developing classes and components that extend the .NET Framework. A sample API specification and other useful resources and tools are also included.
- ISBN-109780321545619
- ISBN-13978-0321545619
- Edition2nd
- PublisherAddison-Wesley Professional
- Publication dateJanuary 1, 2009
- LanguageEnglish
- Dimensions7.75 x 1.25 x 9.75 inches
- Print length436 pages
![]() |
Customers who viewed this item also viewed
Editorial Reviews
Review
“Framework Design Guidelines is one of those rare books that can be read at different reading levels and can be useful to different kinds of developers. Regardless of whether you want to design an effective object model, improve your understanding of the .NET Framework, borrow from the experience of software gurus, stay clear of the most common programming mistakes, or just get an idea of the huge effort that led to the .NET initiative, this book is a must-read.”
—Francesco Balena, The VB Migration Partner Team (www.vbmigration.com), Code Architect, Author, and Microsoft Regional Director, Italy
“Frameworks are valuable but notoriously difficult to construct: your every decision must be geared toward making them easy to be used correctly and difficult to be used incorrectly. This book takes you through a progression of recommendations that will eliminate many of those downstream ‘I wish I’d known that earlier’ moments. I wish I’d read it earlier.”
—Paul Besly, Principal Technologist, QA
“Not since Brooks’ The Mythical Man Month has the major software maker of its time produced a book so full of relevant advice for the modern software developer. This book has a permanent place on my bookshelf and I consult it frequently.”
—George Byrkit, Senior Software Engineer, Genomic Solutions
“Updated for the new language features of the .NET Framework 3.0 and 3.5, this book continues to be the definitive resource for .NET developers and architects who are designing class library frameworks. Some of the existing guidelines have been expanded with new annotations and more detail, and new guidance covering such features as extension methods and nullable types has also been included. The guidance will help any developer write clearer and more understandable code, while the annotations provide invaluable insight into some of the design decisions that made the .NET Framework what it is today.”
—Scott Dorman, Microsoft MVP and President, Tampa Bay International Association of Software Architects
“Filled with information useful to developers and architects of all levels, this book provides practical guidelines and expert background information to get behind the rules. Framework Design Guidelines takes the already published guidelines to a higher level, and it is needed to write applications that integrate well in the .NET area.”
—Cristof Falk, Software Engineer
“This book is an absolute must read for all .NET developers. It gives clear ‘do’ and ‘don’t’ guidance on how to design class libraries for .NET. It also offers insight into the design and creation of .NET that really helps developers understand the reasons why things are the way they are. This information will aid developers designing their own class libraries and will also allow them to take advantage of the .NET class library more effectively.”
—Jeffrey Richter, Author/Trainer/Consultant, Wintellect
“The second edition of Framework Design Guidelines gives you new, important insight into designing your own class libraries: Abrams and Cwalina frankly discuss the challenges of adding new features to shipping versions of their products with minimal impact on existing code. You’ll find great examples of how to create version N+1 of your software by learning how the .NET class library team
created versions 2.0, 3.0, and 3.5 of the .NET library. They were able to add generics, WCF, WPF, WF, and LINQ with minimal impact on the existing APIs, even providing capabilities for customers wanting to use only some of the new features, while still maintaining compatibility with the original library.”
—Bill Wagner, Founder and Consultant, SRT Solutions, author of Effective C# and More Effective C#
“This book is a must read for all architects and software developers thinking about frameworks. The book offers insight into some driving factors behind the design of the .NET Framework. It should be considered mandatory reading for anybody tasked with creating application frameworks.”
—Peter Winkler, Sr. Software Engineer, Balance Technology Inc.
“An instant classic.”
—From the Foreword by Miguel de Icaza
About the Author
Brad Abrams was a founding member of the Common Language Runtime and .NET Framework teams at Microsoft Corporation. He has been designing parts of the .NET Framework since 1998 and is currently Group Program Manager of the .NET Framework team. Brad started his framework design career building the Base Class Library (BCL) that ships as a core part of the .NET Framework. Brad was also the lead editor on the Common Language Specification (CLS), the .NET Framework Design Guidelines, and the libraries in the ECMA\ISO CLI Standard. Brad has authored and coauthored multiple publications, including Programming in the .NET Environment and .NET Framework Standard Library Annotated Reference, Volumes 1 and 2. Brad graduated from North Carolina State University with a B.S. in computer science. You can find his most recent musings on his blog at http://blogs.msdn.com/BradA.
Krzysztof Cwalina is a program manager on the .NET Framework team at Microsoft. He was a founding member of the .NET Framework team and throughout his career has designed many .NET Framework APIs and framework development tools, such as FxCop. He is currently leading a companywide effort to develop, promote, and apply framework design and architectural guidelines to the .NET Framework. He is also leading the team responsible for delivering core .NET Framework APIs. Krzysztof graduated with a B.S. and an M.S. in computer science from the University of Iowa. You can find his blog at http://blogs.msdn.com/kcwalina.
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 APIs1). 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 3.5 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 ex.
The wording of each guideline also indicates how strong the recommendation is. For example, a Do guideline is one that should always2 be followed. 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. Similarly, Do not guidelines indicate something you should almost never do. Less strong, Avoid guidelines indicate that something is generally not a good idea, but there are known cases where breaking the rule makes sense.
Some more complex guidelines are followed with additional background information, illustrative code samples, and rationale.
Language Choice and Code Examples
One of the goals of the Common Language Runtime is to support a variety of programming languages: those with implementations provided by Microsoft, such as C++, VB, C#, F#, Python, and Ruby, as well as third-party languages such as Eiffel, COBOL, Fortran, 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. This includes public types, and their public, protected and explicitly implemented members of these types.
2. 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
- ASIN : 0321545613
- Publisher : Addison-Wesley Professional; 2nd edition (January 1, 2009)
- Language : English
- Hardcover : 436 pages
- ISBN-10 : 9780321545619
- ISBN-13 : 978-0321545619
- Item Weight : 2.34 pounds
- Dimensions : 7.75 x 1.25 x 9.75 inches
- Best Sellers Rank: #863,527 in Books (See Top 100 in Books)
- #8 in Software Reuse
- #111 in Microsoft .NET
- #1,238 in Internet & Telecommunications
- Customer Reviews:
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
Customer Reviews, including Product Star Ratings help customers to learn more about the product and decide whether it is the right product for them.
To calculate the overall star rating and percentage breakdown by star, we don’t use a simple average. Instead, our system considers things like how recent a review is and if the reviewer bought the item on Amazon. It also analyzed reviews to verify trustworthiness.
Learn more how customers reviews work on AmazonCustomers say
Customers find the book very informative and helpful. They also describe it as an excellent book.
AI-generated from the text of customer reviews
Customers find the book very informative, helpful, and brimming with divine wit and wisdom. They also say it helps them plan features so that they're reusable and self-contained.
"Brimful of divine wit and wisdom, this book actually was written by the creators of a universe...." Read more
"...Although, that is true. This book has a lot of commentary to help you understand the context of why the guidelines exist that the MSDN website does..." Read more
"...with a few more years of .NET under my belt, I found the book very informative and helpful in terms of understanding not only how public APIs should..." Read more
"...Helps you plan features so that they're reusable and self contained." Read more
Customers find the book an excellent read.
"...It's a good read and helps a lot if you are programming in C# for anything since then your code will be way better...." Read more
"This is an excellent book. Has some great guidelines from some very smart people...." Read more
"Not exactly what i was looking for, but a it's a great book, it explain the best practise to create a framework" Read more
"This book is an excellent, concise collection of best practices and recommendations for designing your own Framework APIs...." Read more
-
Top reviews
Top reviews from the United States
There was a problem filtering reviews right now. Please try again later.
Known inconsistencies and ambiguities are called out and explained, sometimes apologetically, as the gods of dotnet expound principles and then explain their own acts of creation to illustrate best practice - or sometimes worst practice, when they failed to heed their own advice. The text is littered with inset comments, as though the authors were standing around reviewing a draught of the book with you. They don't always share opinions, and the voice of dissent is as instructive as the explications.
I bought the first edition and loved it, giving it into the hands of someone who needed it. Now I have the second edition. Every now and then I skim it just to refresh my understanding, and sometimes to glean new insight in the context of more experience. Few of us will ever write an application framework, yet I think all of us would be better programmers if we shared the wisdom of those who do. Buy the book. If nothing else it's a hell of a conversation piece.
Although, that is true. This book has a lot of commentary to help you understand the context of why the guidelines exist that the MSDN website does not. It's a good read and helps a lot if you are programming in C# for anything since then your code will be way better.
This book helps explain when to do things and how to do them. It's a good read and still relevant to today.
One other thing I'll mention about this book is that it is geared toward developing a public API, so many of the recommendations may not be applicable to your specific situation. Indeed, for the development of most apps that aren't going to be used by other developers, much simpler coding approaches and architectures can and should be used. Despite that, however, this book has a lot going for it and you'll certainly gain a much deeper understanding of .NET after reading it.
The authors don't just give you guidelines; they give you the reasons behind the guidelines. These reasons are ones learned at Microsoft during the development of the .NET Framework. They tell you what worked and what didn't.
You get multiple points of view, sometimes dissenting. There are, by my count, 25 reviewers / annotators, including Anders Hejlsberg.
The chapter on Common Design Patterns is one I reference frequently.
There are other gems in here, such as Appendix C: Sample API Specification:
"APIs that were designed by writing code samples before actually designing the API are generally successful. APIs that were designed before code samples were written to show how the resulting APIs should be used are often too complex, not self-explanatory, and ultimately need to be fixed in subsequent releases."
If your first instinct upon being told "do it this way" is to ask "why?", this is the book for you.
It fully describes how and why the .NET framework is laid out the way it is, why the parts that seem to annoy you the most got it wrong and how, and provides many useful guidelines from helping you refrain from shooting yourself in the foot.
I might also say that it's equally applicable to just about any modern, sort of OO-based procedural language, but that would probably result in bloody religious wars.
Top reviews from other countries
Major points are listed as Do, Consider, Avoid and Don't, with plenty of explanatory commentary - why to do it as well as what to do. It's not dogmatic, as the various authors involved sometimes chip in with their own viewpoints which may not always be entirely consistent (and there are some Do's and Don'ts given which I would disagree with). They are also not afraid to point out where they did something daft in the .NET framework itself as an example of what not to do. Examples are given in C#.
This is without a doubt my most essential, the book to save from a burning building.




