What is a Managed Module (compared to an Assembly)?

后端 未结 3 689
忘掉有多难
忘掉有多难 2020-12-15 19:00

What is Managed Module in .NET and how is it different from Assemblies? Is a PE file (eg. test.dll) a managed module or an assembly? How does assembly/managed module corresp

3条回答
  •  野趣味
    野趣味 (楼主)
    2020-12-15 19:33

    Managed modules are the compiled IL versions of the source code. The extension of the file that is built when making a module from source files is .netmodule.

    Assemblies are either DLLs or .exe files containing managed modules, resources, and metadata.

提交回复
热议问题