How can I view MSIL / CIL generated by C# compiler? Why is it called assembly?

前端 未结 13 1050
南方客
南方客 2020-11-28 18:53

I\'m new to .NET C# programming. I\'m following few books. It is said that instead of compiling it directly to binary code (Native code). High level code is converted into i

13条回答
  •  醉话见心
    2020-11-28 19:50

    I believe that they are called "assemblies" because an assembly is a set of modules, assembled together by a manifest.


    (source: microsoft.com)

    See Assembly Contents for details.

提交回复
热议问题