rent-now

Rent More, Save More! Use code: ECRENTAL

5% off 1 book, 7% off 2 books, 10% off 3+ books

9780321545619

Framework Design Guidelines Conventions, Idioms, and Patterns for Reusable .NET Libraries

by ;
  • ISBN13:

    9780321545619

  • ISBN10:

    0321545613

  • Edition: 2nd
  • Format: Hardcover
  • Copyright: 2008-10-22
  • Publisher: Addison-Wesley Professional
  • View Upgraded Edition
  • Purchase Benefits
List Price: $64.99

Summary

Lead developers on the .NET team teach best practices for designing system frameworks and reusable libraries for use with .NET.

Author Biography

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.

Table of Contents

Figuresp. xvii
Tablesp. xix
Forewordp. xxi
Foreword to the First Editionp. xxiii
Prefacep. xxv
Acknowledgmentsp. xxxi
About the Authorsp. xxxiii
About the Annotatorsp. xxxv
Introductionp. 1
Qualities of a Well-Designed Frameworkp. 3
Framework Design Fundamentalsp. 9
Progressive Frameworksp. 11
Fundamental Principles of Framework Designp. 14
Naming Guidelinesp. 37
Capitalization Conventionsp. 38
General Naming Conventionsp. 46
Names of Assemblies and DLLsp. 54
Names of Namespacesp. 56
Names of Classes, Structs, and Interfacesp. 60
Names of Type Membersp. 68
Naming Parametersp. 73
Naming Resourcesp. 74
Type Design Guidelinesp. 77
Types and Namespacesp. 79
Choosing Between Class and Structp. 84
Choosing Between Class and Interfacep. 88
Abstract Class Designp. 95
Static Class Designp. 97
Interface Designp. 98
Struct Designp. 101
Enum Designp. 103
Nested Typesp. 115
Types and Assembly Metadatap. 118
Member Designp. 121
General Member Design Guidelinesp. 121
Property Designp. 138
Constructor Designp. 144
Event Designp. 153
Field Designp. 159
Extension Methodsp. 162
Operator Overloadsp. 168
Parameter Designp. 175
Designing for Extensibilityp. 193
Extensibility Mechanismsp. 193
Base Classesp. 206
Sealingp. 207
Exceptionsp. 211
Exception Throwingp. 216
Choosing the Right Type of Exception to Throwp. 221
Using Standard Exception Typesp. 234
Designing Custom Exceptionsp. 239
Exceptions and Performancep. 240
Usage Guidelinesp. 245
Arraysp. 245
Attributesp. 247
Collectionsp. 250
DateTime and DateTimeOffsetp. 261
ICloneablep. 263
IComparable and IEquatablep. 264
IDisposablep. 266
Nullablep. 266
Objectp. 268
Serializationp. 274
Urip. 283
System.Xml Usagep. 284
Equality Operatorsp. 286
Common Design Patternsp. 289
Aggregate Componentsp. 289
Table of Contents provided by Publisher. All Rights Reserved.

Supplemental Materials

What is included with this book?

The New copy of this book will include any supplemental materials advertised. Please check the title of the book to determine if it should include any access cards, study guides, lab manuals, CDs, etc.

The Used, Rental and eBook copies of this book are not guaranteed to include any supplemental materials. Typically, only the book itself is included. This is true even if the title states it includes any access cards, study guides, lab manuals, CDs, etc.

Excerpts

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 inmonospacefont. 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 Doguideline is one that should always2be followed. On the other hand, Considerguidelines 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 notguidelines indicate something you should almost never do. Less strong, Avoidguidelines 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.

Rewards Program