.NET Module vs Assembly

前端 未结 3 436
忘了有多久
忘了有多久 2020-12-12 16:14

I\'ve been trying to wrap my head around the \'right\' answer to this? there are a couple of topics on stackoverflow that covers this, but that conflicts somewhat with msdn

3条回答
  •  清歌不尽
    2020-12-12 16:45

    A module is a logical collection of code within an Assembly. You can have multiple modules inside an Assembly, and each module can be written in different .NET languages (VS, as far as I'm aware, doesn't support creation of multi-module assemblies).

    Assemblies contain modules. Modules contain classes. Classes contain functions.

    From: What is a module in .NET?

    Really From: Bing search ".NET module vs assembly"

提交回复
热议问题