krishna mohan
krishna mohan

Reputation: 33

BCL and FCL - both are NameSpaces?

I need a clarity regarding class libraries.
Base Class Libraries and Framework Class Libraries both are comes under namespaces-I mean can we call both are namespaces? if not which one we can call as a namespace and why?

Upvotes: 3

Views: 251

Answers (1)

Jon Skeet
Jon Skeet

Reputation: 1503469

No, they're not namespaces. A namespace is something like System, System.IO or System.Collections.Generic. The libraries contain types that are in namespaces, but the libraries aren't namespaces themselves. 

Upvotes: 4

Related Questions