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

前端 未结 13 1033
南方客
南方客 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:34

    1. Yes it is in assembly.
    2. You need .NET Reflector or ILDasm.
    3. More details on assembly check HERE.

    P.S As you are following some books I will highly recommend you CLR via C#.

提交回复
热议问题