What is the difference between a class library and a namespace?

14,009

Solution 1

Namespaces provide a notional separation for classes, class libraries provide a physical separation (in windows think a standalone dll).

Class libraries are useful for when you want to wrap up functionality that can be shared with other projects.

Imagine creating a windows application where you split the UI and the implementation classes (class library) into 2 different projects. Then you find you need to have a web version of the same thing. You can just import the class library you created from the windows application and you have all your implementation available to you and just focus on the web UI.

If you'd created the whole windows app in one project using namespaces to seperate them, doing that would be tricky & messy. (ever tried importing an exe?)

It is worth pointing out that class libraries will themselves likely use namespaces to provide further notional separation to the classes within them

Solution 2

The purpose of namespaces is to avoid name collisions. Namespace should be used when your have several hundreds of classes. Other indicator - when your code is used by somebody else and your names may collide with names in the user code.

Other important difference is that class is always a data type. You can define variables with this type. Namespace is not a type. You cannot define vars with the namespace.

Share:
14,009

Related videos on Youtube

Mridul Raj
Author by

Mridul Raj

programming is my passion!!!!

Updated on October 09, 2022

Comments

  • Mridul Raj
    Mridul Raj over 1 year

    What is the actual difference between class library and a namespace? I know both are used to group together classes, namespace etc. Can anyone tell in which scenario should I use a class library and when to go for creating a new namespace.

  • Kirill Kobelev
    Kirill Kobelev almost 12 years
    Then you need to be more specific in what language are you using.