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

前端 未结 2 729
轻奢々
轻奢々 2021-02-06 02:21

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 us

相关标签:
2条回答
  • 2021-02-06 02:57

    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

    0 讨论(0)
  • 2021-02-06 03:01

    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.

    0 讨论(0)
提交回复
热议问题