This page is likely outdated (last edited on 19 Dec 2007). Visit the new documentation for updated content.

.NET Framework Architecture

Table of contents

The Big Picture

When approaching something as complex as .NET, it helps to have some idea of how it relates to your work. The following diagram provides some context for where your application fits into the Mono/.NET framework.

Figure 1

NOTE: This is a greatly simplified view; we’re ignoring ASP.NET and ADO.NET for now.

Refer to the above diagram for the following sections.

Class Library

The class library provides a comprehensive set of facilities for application development. Primarily written in C#, it can be used by any language, thanks to the Common Language Specification .

The class library is structured into Namespaces, and deployed in shared libraries known as Assemblies. When we speak of the .NET framework , we are primarily referring to this class library.

Namespaces

Namespaces are a mechanism for logically grouping similar classes into a hierarchical structure. This prevents naming conflicts. The structure is implemented using dot-separated words. The top level namespace for most of the .NET framework is System . Under the System namespace you’ll find the following:

  • System.IO
  • System.Net
  • System.Net.Sockets
  • System.Reflection
  • System.Threading
  • …and many others. For a complete list, see the Mono class library status page.

There are other top-level namespaces as well; Accessibility , and Windows are examples. You can also create your own namespaces: just prefix them with the name of your organization. Microsoft.VisualBasic is an example.

Assemblies

Assemblies are the physical packaging of the class libraries. These are .dll files, but don’t confuse them with Win32 shared libraries. Examples are

  • mscorlib.dll
  • System.dll
  • System.Data.dll
  • Accessibility.dll Note that namespaces are often distributed among several assemblies. Again, see the Mono class library status page.

An assembly can also be composed of several files.

Common Language Infrastructure

More commonly known as the Common Language Runtime , this is implemented by the Mono executable. This runtime is used to execute the compiled .NET application. The common language infrastructure is defined by ECMA standard ECMA-335 .

To run your application, you must invoke the runtime with the relevant parameters.

Common Language Specification

This is specified in ECMA-335,chapter 6. It defines the interface to the CLI, such as conventions like the underlying types for Enum.

The Mono compiler generates an image that conforms to the CLS. This is the Common Intermediate Language . The Mono runtime takes this image and runs it.

The ECMA standard formally defines a library that conforms to the CLS as a framework .

Managed and Unmanaged Code

Within a native .NET/Mono application, all code is managed; that is, it is governed by the CLI’s style of memory management and thread safety. .NET/Mono applications can use legacy code, which is referred to as unmanaged, by using the System.InterOpServices libraries to create C# bindings. Many of the libraries which ship with Mono use this feature of the CLI; in particular, the Gtk# libraries are C# wrappers around the underlying C libraries.

Bibliography

ECMA Standard 334 , the C# language specification.

ECMA Standard 335 , the Common Language Infrastructure.

MSDN documentation for the .NET framework is here.

O’Reilly C# in a Nutshell is definitely recommended.

Contributors

Johannes Roith, Norman Lorrain, Jon Kessler, Shane Landrum