Framework Design Guidelines: Conventions, Idioms, And Patterns for Reusable .net Libraries Har/Dvdr Edition

4.6 out of 5 stars 43 ratings
ISBN-13: 978-0321246752
ISBN-10: 0321246756
Why is ISBN important?
ISBN
This bar-code number lets you verify that you're getting exactly the right version or edition of a book. The 13-digit and 10-digit formats both work.
Scan an ISBN with your phone
Use the Amazon App to scan ISBNs and compare prices.
Loading your book clubs
There was a problem loading your book clubs. Please try again.
Not in a club? Learn more
Amazon book clubs early access

Join or create book clubs

Choose books together

Track your books
Bring your club to Amazon Book Clubs, start a new book club and invite your friends to join, or find a club that’s right for you for free.
Used: Good | Details
Condition: Used: Good
Comment: Spine creases, wear to binding and pages from reading. May contain limited notes, underlining or highlighting that does affect the text. Possible ex library copy, will have the markings and stickers associated from the library. Accessories such as CD, codes, toys, may not be included.
Access codes and supplements are not guaranteed with used items.
FREE delivery: Nov 3 - 9
Only 1 left in stock - order soon.
Available at a lower price from other sellers that may not offer free Prime shipping.
FREE delivery: Friday, Nov 5 Details
Fastest delivery: Thursday, Nov 4 Details
Framework Design Guidelin... has been added to your Cart
1-Click ordering is not available for this item.
Available at a lower price from other sellers that may not offer free Prime shipping.

Amazon First Reads | Editors' picks at exclusive prices

Special offers and product promotions

  • Create your FREE Amazon Business account to save up to 10% with Business-only prices and free shipping.

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 or ICollection as a parameter just to access the Count property.

Some more complex guidelines are followed with additional background information, illustrative code samples, and rationale:

DO implement IEquatable on value types. The Object.Equals method on value types causes boxing and its default implementation is not very efficient because it uses reflection. IEquatable.Equals can offer much better performance and can be implemented so it does not cause boxing.

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
  • Customer Reviews:
    4.6 out of 5 stars 43 ratings

Audible Holiday Deal
Save 46% on your first 4 months. Get this deal

About the authors

Follow authors to get new release updates, plus improved recommendations.

Customer reviews

4.6 out of 5 stars
4.6 out of 5
43 global ratings
5 star
66%
4 star
25%
3 star
10%
2 star 0% (0%) 0%
1 star 0% (0%) 0%
How are ratings calculated?

Top reviews from the United States

Reviewed in the United States on August 10, 2014
Verified Purchase
2 people found this helpful
Report abuse
Reviewed in the United States on August 7, 2007
Verified Purchase
5 people found this helpful
Report abuse
Reviewed in the United States on March 8, 2006
Verified Purchase
3 people found this helpful
Report abuse
Reviewed in the United States on November 7, 2005
Verified Purchase
32 people found this helpful
Report abuse
Reviewed in the United States on May 6, 2006
Verified Purchase
2 people found this helpful
Report abuse
Reviewed in the United States on August 6, 2015
Verified Purchase
Reviewed in the United States on May 13, 2008
Verified Purchase
Reviewed in the United States on August 7, 2013
Verified Purchase

Top reviews from other countries

Y. Heslop
5.0 out of 5 stars Five Stars
Reviewed in the United Kingdom on July 9, 2014
Verified Purchase
Tyler
5.0 out of 5 stars Eines der nützlichsten und zeitlosesten...
Reviewed in Germany on February 26, 2021
Verified Purchase
C. Jack
5.0 out of 5 stars Expert Advice
Reviewed in the United Kingdom on May 23, 2006
Verified Purchase
5 people found this helpful
Report abuse
Horst Borksch
4.0 out of 5 stars Alt aber für Grundlagen gut - und günstig
Reviewed in Germany on May 24, 2017
Verified Purchase
Andre Asano
4.0 out of 5 stars Some dirt and drawings but good stats
Reviewed in Canada on November 11, 2018
Verified Purchase
Customer image
4.0 out of 5 stars Some dirt and drawings but good stats
Reviewed in Canada on November 11, 2018
The book is used. It has some dirt on the cover and some drawings on the back cover but overall it's in a good shape.
Images in this review
Customer image Customer image
Customer imageCustomer image