vote up 2 vote down star

What's the difference between the two? Can we use them interchangeably?

flag

56% accept rate

4 Answers

vote up 2 vote down

BCL:

A .NET Framework library, BCL is the standard for the C# runtime library and one of the Common Language Infrastructure (CLI) standard libraries. BCL provides types representing the built-in CLI data types, basic file access, collections, custom attributes, formatting, security attributes, I/O streams, string manipulation, and more.

FCL:

The .NET Framework class library is exactly what its name suggests: a library of classes and other types that developers can use to make their lives easier. While these classes are themselves written in C#, they can be used from any CLRbased language

You'll be using the BCL with some parts of the FCL with each project type. So System.Windows.Forms (a separate library) or System.Web, with the BCL from mscorlib and System.dll

link|flag
2  
At Microsoft, I believe the CLR team owns the BCL, while many teams own different parts of the FCL. – rjdevereux Apr 30 at 17:43
vote up 2 vote down

The Base Class Library (BCL) is literally that, the base. It contains basic, fundamental types like System.String and System.DateTime.

The Framework Class Library (FCL) is the wider library that contains the totality: ASP.NET, WinForms, the XML stack, ADO.NET and more. You could say that the FCL includes the BCL.

link|flag
So .net framework = fcl + bcl? – Joan Venge Apr 30 at 16:56
On a simple level, .NET Framework = libraries (FCL, BCL), language compilers (C#, VB.NET) and Common Language Runtime (CLR). Plus then there's the whole ecosytem that surrounds that: Visual Studio, MSDN Help, and more. – Andrew Webb May 1 at 9:44
vote up 1 vote down

The BCL is a subset of the FCL. BCL honors the ECMA specification for the common language infrastructure. Then Microsoft added all their goodness like data and xml and called it the Framework Class Library. Basically they took the BCL and made it go to 11!

link|flag
Thanks, what do you mean by "go to 11"? – Joan Venge Apr 30 at 16:55
2  
Spinal Tap reference – Chris S Apr 30 at 18:40
Haven't heard that one. Can you tell me what it means so I am not left out? – Joan Venge Apr 30 at 20:25

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.