0

I'm starting to read MSDN .NET Framework 4.5 manual and I've one doubt about .NET class library defenition. MSDN said the following:

The .NET Framework consists of the common language runtime and the .NET Framework class library

So what is the .NET Framework class library? It is CLR just assemblies or some modules with native .NET Framework code? Where can I looking for some class from this library?

1 Answer 1

1

they refer to Base Class Library of .NET

The Base Class Library (BCL) is a Common Language Infrastructure (CLI) standard library available to all CLI languages. CLI includes the BCL in order to encapsulate a large number of common functions, such as file reading and writing, graphic rendering, database interaction, and XML document manipulation, which makes the programmer's job easier. It is much larger in scope than standard libraries for most other languages, including C++, and is comparable in scope and coverage to the standard libraries of Java. The .NET Framework, being the first implementation of CLI, is the origin of the BCL. It is sometimes incorrectly referred to as the Framework Class Library (FCL), but the FCL is actually a superset including Microsoft specific namespaces. The BCL is updated with each version of the .NET Framework.

Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.