Framework Class Library

Why Trust Techopedia

What Does Framework Class Library Mean?

The Framework class library (FCL) is a comprehensive collection of reusable types including classes, interfaces and data types included in the .NET Framework to provide access to system functionality.

Advertisements

The .NET FCL forms the base on which applications, controls and components are built in .NET. It can be used for developing applications such as console applications, Windows GUI applications, ASP.NET applications, Windows and Web services, workflow-enabled applications, service oriented applications using Windows Communication, XML Web services, etc.

The reusable types of FCL provide a simple interface to developers due to:

  • Their self-documenting nature
  • Lesser learning curve to understand the framework, which expedites and optimizes the development process
  • Seamless integration of third-party components with classes in FCL

FCL acts as a standard library, which can be used in a consistent manner by all the .NET languages and common language compliant (CLC-compliant) compilers.

Techopedia Explains Framework Class Library

The .NET FCL is the key component of .NET framework. It provides core functionalities of .NET architecture, which include:

  • Base data types
  • Object type
  • Implementation of data structures
  • Garbage collection
  • Security, data access and database connectivity
  • Network communications
  • Support for implementing rich client GUI for both Windows and Web-based applications

FCL is designed to provide services similar to the Windows application programming interface (API), which was used before .NET was created. FCL has its code base as managed, object-oriented and easy to use, while Windows API is unmanaged, modular and cumbersome to use.

The .NET FCL is integrated with the Common Language Runtime (CLR) of the Framework, which manages the code execution. Its classes follow the object model as used by the Intermediate Language (IL) and are based on single inheritance. The classes and interfaces are grouped into namespaces so that they can be accessed easily.

Namespaces represent a hierarchy of the defined types formed by a logical group of related classes and interfaces, which can be used by any language targeting the .NET framework. They reside in assemblies, which are deployable units containing details about classes, interfaces and structures. The first part up to the last dot of the full name of a type indicates the namespace, while the last part specifies the type name. This way of using namespaces avoids a naming conflict, which can arise if two class names are same. While "System" is the root namespace for fundamental types in .NET framework, "Object" forms the root for all objects.

The classes and interfaces provide an option to use the functionality through implementation (in a concrete class considering it as a base) or only the signatures of methods defined in interface or abstract classes. When using Visual Studio for development of an application, the most common base classes are already referenced in the project, while the types not defined, such as user-defined types in a separate dynamic link library, have to be added explicitly so they can be used. The class servicing the needed functionality can be used in code by including an import directive for the namespace containing the class.

Microsoft has also provided guidelines necessary to be adopted for library development, which extend and interact with the .NET Framework. These guidelines cover naming types and members in class libraries, using static and abstract classes, interfaces, members of type, exceptions, etc. Improper usage of the FCL library can adversely affect developer productivity and discourage its usage.

FCL is similar to Java Foundation Classes. The main challenge in using FCL is to know the specific class that can provide the required functionality.

Advertisements

Related Terms

Margaret Rouse
Technology expert
Margaret Rouse
Technology expert

Margaret is an award-winning writer and educator known for her ability to explain complex technical topics to a non-technical business audience. Over the past twenty years, her IT definitions have been published by Que in an encyclopedia of technology terms and cited in articles in the New York Times, Time Magazine, USA Today, ZDNet, PC Magazine, and Discovery Magazine. She joined Techopedia in 2011. Margaret’s idea of ​​a fun day is to help IT and business professionals to learn to speak each other’s highly specialized languages.