Design Guidelines Digest

Lots of people have asked me to create a short version of the Design Guidelines. Here it is. You can also email me directly at kcwalina@microsoft.com if you would like to get an MS Word copy of the digest, hich has a bit better formatting.

[UPDATE: I recently updated this document and placed it online. The details are described here.]

Also, I would be interested in knowing what you think about the selection of the guidelines in the digest. Have I ommited something important? Have I included something that could be cut?

API Design Guidelines Digest

Krzysztof Cwalina (kcwalina@microsoft.com)

Program Manager, Microsoft

Introduction

The full .NET Framework Design Guidelines document consists of more than 200 pages of detailed prescriptive guidance. In can be accesses at MSDN. This document is a distilled version highlighting the most important of those guidelines.

Moving to a managed execution environment (the .NET Framework) offers an opportunity to improve the programming model. For several reasons, we strongly advise designers to treat the Design Guidelines as if they were prescriptive. We believe that developer productivity can be seriously hampered by inconsistent design.

Development tools and add-ins will turn some of these guidelines into de facto prescriptive rules, and reduce the value of non-conforming components. These non-conforming components will function, but not to their full potential.

It is very important that you follow the guidelines provided here. However, there are instances where good library design dictates that these guidelines be broken. In such cases, it is important to provide solid justification.

General Design Principles

Scenario Driven Design: Start the design process of your public API by defining the top scenarios for each feature area. Write code you would like the end users to write when they will be implementing these scenarios using your API. Design your API based on the sample code you wrote.

Usability Studies: Test usability of your API. Choose developers who are not familiar with your API and have them implement the main scenarios. Try to identify which parts of your API are not intuitive.

Self Documenting API: Developers using your API should be able to implement main scenarios without reading the documentation. Help users to discover what types they need to use in main scenarios and what the semantics of the main methods are by choosing intuitive names for most used types and members. Talk about naming choices during specification reviews.

Understand Your Customer: Realize that the majority of your customers are not like you. You should design the API for your customer, not for developers working in your close working group, who unlike majority of your customers are experts in the technology you are trying to expose.

Casing & Naming Guidelines

Casing and naming guidelines apply only to public and protected identifiers, and privately implemented interface members. Teams are free to choose their own guidelines for internal and private identifiers.

Do use PascalCasing (capitalize the first letter of each word) for all identifiers except parameter names. For example, use TextColor rather than Textcolor or Text_color.

Do use camelCasing (capitalize first letters of each word except for the first word) for all parameter names.

Do use PascalCasing or camelCasing for any acronyms over two characters long. For example, use HtmlButton rather than HTMLButton, but System.IO instead of System.Io.

Do not use acronyms that are not generally accepted in the field.

Do use well-known acronyms only when absolutely necessary. For example, use UI for User Interface and Html for Hyper-Text Markup Language.

Do not use of shortenings or contractions as parts of identifier names. For example, use GetWindow rather than GetWin.

Do not use underscores, hyphens, or any other non-alphanumeric characters.

Do not use Hungarian notation.

Do name types and properties with nouns or noun phrases.

Do name methods and events with verbs or verb phrases. Always give events names that have a concept of before and after using the present particle and simple past tense. For example, an event that is raised before a Form closes should be named Closing. An event raised after a Form is closed should be named Closed.

Do not use the “Before” or “After” prefixes to indicate pre and post events.

Do use the following prefixes:

· “I” for interfaces.

· “T” for generic type parameters (except single letter parameters).

Do use the following postfixes:

· “Exception” for types inheriting from System.Exception.

· “Collection” for types implementing IEnumerable.

· “Dictionary” for types implementing IDictionary or IDictionary<K,V>.

· “EventArgs” for types inheriting from System.EventArgs.

· “EventHandler” for types inheriting from System.Delegate.

· “Attribute” for types inheriting from System.Attribute.

Do not use the postfixes listed above for any other types.

Do not postfix type names with “Flags” or “Enum”.

Do use plural noun phrases for flag enums (enums with values that support bitwise operations) and singular noun phrases for non-flag enums.

Do apply FlagsAttribute to flag enums.

Do use the following template for naming namespaces: <Company>.<Technology>[.<Feature>]. For example, Microsoft.Office.ClipGallery. Operating System components should use System namespaces instead for the <Company> namespaces.

Do not use organizational hierarchies as the basis for namespace hierarchies. Namespaces should correspond to scenarios regardless of what teams contribute APIs for those scenarios.

General Design Guidelines

Do use the most derived type for return values and the least derived type for input parameters. For example take IEnumerable as an input parameter but return Collection<string> as the return type.

Do provide a clear API entry point for every scenario. Every feature area should have preferably one, but sometimes more, types that are the starting points for exploring given technology. We call such types Aggregate Components. Implementation of large majority of scenarios in given technology area should start with one of the Aggregate Components.

Do write sample code for your top scenarios. The first type used in all these samples should be an Aggregate Component and the sample code should be straightforward. If the code gets longer than several lines, you need to redesign. Writing to an event log in Win32 API was around 100 lines of code. Writing to .NET Framework EventLog takes one line of code.

Do model higher level concepts (physical objects) rather than system level tasks with Aggregate Components. For example File, Directory, Drive are easier to understand than Stream, Formatter, Comparer.

Do not require users of your APIs to instantiate multiple objects in main scenarios. Simple tasks should be done with one new statement.

Do support so called “Create-Set-Call” programming style in all Aggregate Components. It should be possible to instantiate every component with the default constructor, set one or more properties, and call simple methods or respond to events.

EventLog applicationLog = new EventLog();

applicationLog.Source = “MySource”;

applicationLog.WriteEntry(exception.Message);

Do not require extensive initialization before Aggregate Components can be used. If some initialization is necessary, the exception resulting from not having the component initialized should clearly explain what needs to be done.

Do carefully choose names for your types, methods, and parameters. Think hard about the first name people will try typing in the code editor when they explore the feature area. Reserve and use this name for the Aggregate Component. A common mistake is to use the “best” name for a base type.

Do Run FxCop on your libraries.

Do ensure your library is CLS compliant. Apply CLSCompliantAttribute to your assembly.

Do prefer classes over interfaces.

Do not seal types unless you have a strong reason to do it.

Do not create mutable value types.

Do not ship interfaces without providing at least one default implementation (a type implementing the interface). This helps to validate the interface design.

Do not ship interfaces without providing at least one API consuming the interface (a method taking the interface as a parameter). This helps to validate the interface design.

Avoid public nested types.

Do strongly prefer collections over arrays in public API.

Do provide strongly typed collections.

Do not use ArrayList, List<T>, Hashtable, or Dictionary<K,V> in public APIs. Use Collection<T>, ReadOnlyCollection<T>, KeyedCollection<K,T>, or CollectionBase subtypes instead. Note that the generic collections are only supported in the Framework version 2.0 and above.

Do not use error codes to report failures. Use Exceptions instead.

Do not throw Exception or SystemException the base type.

Avoid catching the Exception base type.

Do prefer throwing existing common general purpose exceptions like ArgumentNullException, ArgumentOutOfRangeException, InvalidOperationException instead of defining custom exceptions.

Do throw the most specific exception possible.

Do ensure that exception messages are clear and actionable.

Do provide delegates with signatures following the pattern below far all events: <EventName>EventHandler(object sender, <EventArgs> e)

Do prefer event based APIs over delegate based APIs.

Do prefer constructors over factory methods.

Do not expose public fields. Use properties instead.

Do prefer properties for concepts with logical backing store but use methods in the following cases:

· The operation is a conversion (such as Object.ToString())

· The operation is expensive (orders of magnitude slower than a field set would be).

· Obtaining a property value using the Get accessor has an observable side effect.

· Calling the member twice in succession results in different results.

· The member returns an array. Note: Members returning arrays should return copies of an internal master array, not a reference to the internal array.

Do allow properties to be set in any order. Properties should be stateless with respect to other properties.

Do not make members virtual unless you have a strong reason to do it.

Avoid finalizers.

Do implement IDisposable on all types acquiring native resources and those that provide finalizers.

Do be consistent in the ordering and naming of method parameters.

It is common to have a set of overloaded methods with an increasing number of parameters to allow the developer to specify a desired level of information. The Make sure all the related overloads have a consistent parameter order (same parameter shows in the same place in the signature) and naming pattern.

public class Foo{

   readonly string defaultForA = "default value for a";

   readonly int defaultForB = 42;

   

   public void Bar(){

      Bar(defaultForA, defaultForB);

   }

          

   public void Bar(string a){

      Bar(a, defaultForB);

   }

           

   public void Bar(string a, int b){

      // core implementation here

   }

}

The only method in such a group that should be virtual is the one that has the most parameters and only when extensibility is needed.

Avoid out and ref parameters.

Resources

About FxCop

FxCop is a code analysis tool that checks .NET managed code assemblies for conformance to the Microsoft .NET Framework Design Guidelines. It uses reflection, MSIL parsing, and callgraph analysis to inspect assemblies for more than 200 defects in the following areas:

· Library design

· Localization

· Naming conventions

· Performance

· Security

FxCop includes both GUI and command line versions of the tool, as well as an SDK to create custom rules. The tool can be downloaded from https://www.gotdotnet.com/team/fxcop

Other Resources

Full Design Guidelines can be accessed at https://msdn.microsoft.com/library/en-us/cpgenref/html/cpconNETFrameworkDesignGuidelines.asp. These provide some more detail and some justifications for the guidelines described above.

Design Guideline updates are posted to the following blog. https://blogs.msdn.com/kcwalina/archive/2004/06/22.aspx