Book description
A new edition of this title is available, ISBN-10: 0321545613 ISBN-13: 9780321545619
"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
"Framework Design Guidelines will help you in two important ways. First, any .NET developer will benefit from a greater understanding of the design principles that govern the .NET Base Class Library. Second, a deeper understanding of these principles will help you to create software that integrates well with the .NET environment. Quite frankly, this book should be on every .NET developer's bookshelf."
--Bill Wagner, founder and consultant, SRT Solutions, author of Effective C#
"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
"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, senior software engineer, Balance Technology Inc.
"Frameworks are valuable but notoriously difficult to construct: Your every decision must be geared towards 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
"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
Framework Design Guidelines: Conventions, Idioms, and Patterns for Reusable .NET Libraries teaches developers the best practices for designing system frameworks and reusable libraries for use with the Microsoft .NET Framework and WinFX. This book focuses on the design issues that directly affect the programmability of a framework, specifically its publicly accessible APIs.
This book can improve the work of any .NET developer producing code that other developers will use. An added benefit is a collection of annotations to the guidelines by various members of the Microsoft .NET Framework and WinFX teams, which provide a lively discussion of the motives behind the guidelines, along with examples of good reasons for breaking the guidelines.
Microsoft architects Krzysztof Cwalina and Brad Abrams offer guidelines for framework design from the top down. From their long experience and deep insight, you will learn
The general philosophy of framework design
Principles and guidelines that are fundamental to overall framework design
Naming guidelines for the various parts of a framework, such as namespaces, types, and members
Guidelines for the design of types and members of types
Issues and guidelines that are important to ensure appropriate extensibilityin your framework
Guidelines for working with exceptions, the preferred error reporting mechanism in the .NET Framework and WinFX
Guidelines for extending and using types that commonly appear in frameworks
Guidelines for and examples of common framework design patterns
Guidelines in this book come in four major forms: Do, Consider, Avoid, and Do not. In general, a Do guideline should almost always be followed, a Consider guideline should generally be followed, an Avoid guideline indicates that something is generally not a good idea, and a Do not guideline indicates something you should almost never do. Every guideline includes a discussion of its applicability, and most guidelines include a code example.
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 are also included.
Table of contents
- Copyright
- Microsoft .NET Development Series
- Figures
- Tables
- Foreword
- Preface
- Acknowledgments
- About the Authors
- About the Annotators
-
1. Introduction
-
1.1. Qualities of a Well-Designed Framework
- 1.1.1. Well-Designed Frameworks Are Simple
- 1.1.2. Well-Designed Frameworks Are Expensive to Design
- 1.1.3. Well-Designed Frameworks Are Full of Trade-Offs
- 1.1.4. Well-Designed Frameworks Borrow from the Past
- 1.1.5. Well-Designed Frameworks Are Designed to Evolve
- 1.1.6. Well-Designed Frameworks Are Integrated
- 1.1.7. Well-Designed Frameworks Are Consistent
-
1.1. Qualities of a Well-Designed Framework
- 2. Framework Design Fundamentals
- 3. Naming Guidelines
- 4. Type Design Guidelines
- 5. Member Design
- 6. Designing for Extensibility
-
7. Exceptions
- 7.1. Exception Throwing
- 7.2. Choosing the Right Type of Exception to Throw
-
7.3. Using Standard Exception Types
- 7.3.1. Exception and SystemException
- 7.3.2. ApplicationException
- 7.3.3. InvalidOperationException
- 7.3.4. ArgumentException, ArgumentNullException, and ArgumentOutOfRangeException
- 7.3.5. NullReferenceException, IndexOutOfRangeException, and AccessViolationException
- 7.3.6. StackOverflowException
- 7.3.7. OutOfMemoryException
- 7.3.8. ComException, SEHException, and other CLR Exceptions
- 7.3.9. ExecutionEngineException
- 7.4. Designing Custom Exceptions
- 7.5. Exceptions and Performance
- 7.6. Summary
- 8. Usage Guidelines
- 9. Common Design Patterns
- A. C# Coding Style Conventions
-
B. Using FxCop to Enforce the Design Guidelines
- B.1. What Is FxCop?
- B.2. The Evolution of FxCop
- B.3. How Does It Work?
-
B.4. FxCop Guideline Coverage
-
B.4.1. FxCop Rules for the Naming Guidelines
- B.4.1.1. FxCop Rules for Capitalization Conventions
- B.4.1.2. FxCop Rules for General Naming Conventions
- B.4.1.3. FxCop Rules for Names of Assemblies and DLLs
- B.4.1.4. FxCop Rules for Names of Namespaces
- B.4.1.5. FxCop Rules for Names of Classes, Structs, and Interfaces
- B.4.1.6. FxCop Rules for Names of Type Members
- B.4.1.7. FxCop Rules for Naming Parameters
- B.4.1.8. FxCop Rules for Naming Resources
-
B.4.2. FxCop Rules for the Type Design Guidelines
- B.4.2.1. FxCop Rules for Types and Namespaces
- B.4.2.2. FxCop Rules for Choosing Between Class and Struct
- B.4.2.3. FxCop Rules for Choosing Between Class and Interface
- B.4.2.4. FxCop Rules for Interface Design
- B.4.2.5. FxCop Rules for Struct Design
- B.4.2.6. FxCop Rules for Enum Design
- B.4.2.7. FxCop Rules for Nested Types
-
B.4.3. FxCop Rules for Member Design
- B.4.3.1. FxCop Rules for General Member Design Guidelines
- B.4.3.2. FxCop Rules for Property Design
- B.4.3.3. FxCop Rules for Constructor Design
- B.4.3.4. FxCop Rules for Event Design
- B.4.3.5. FxCop Rules for Field Design
- B.4.3.6. FxCop Rules for Operator Overloads
- B.4.3.7. FxCop Rules for Parameter Design
- B.4.4. FxCop Rules for Designing for Extensibility
- B.4.5. FxCop Rules for Exceptions
- B.4.6. FxCop Rules for Usage Guidelines
- B.4.7. FxCop Rules for Design Patterns
-
B.4.1. FxCop Rules for the Naming Guidelines
- C. Sample API Specification
- Glossary
- Suggested Reading List
- DVD-ROM Warranty
Product information
- Title: Framework Design Guidelines: Conventions, Idioms, and Patterns for Reusable .NET Libraries
- Author(s):
- Release date: September 2005
- Publisher(s): Addison-Wesley Professional
- ISBN: 9780321246752
You might also like
book
Designing Data-Intensive Applications
Data is at the center of many challenges in system design today. Difficult issues need to …
video
Angular - The Complete Guide [2023 Edition]
Learn all the fundamentals you need to know in order to get started developing Angular applications …
video
React - The Complete Guide (Includes Hooks, React Router, and Redux) - Second Edition
**This course is now updated for the latest version of React—React 18** React.js is the most …
book
Effective Java, 3rd Edition
Since this Jolt-award winning classic was last updated in 2008, the Java programming environment has changed …