Compiling C# to Native?

后端 未结 11 1351
醉酒成梦
醉酒成梦 2020-12-12 10:26

I think I\'m somewhat confused about compiling .NET byte-code to native code, or maybe I\'m confused about the end result. So please bear with me as I try to sort through w

11条回答
  •  南方客
    南方客 (楼主)
    2020-12-12 11:25

    NGEN adds native code, but it does not remove the MSIL. Therefore, any tool operating on the MSIL can still work. You also need this for reflection, something that would be very hard for a true native compiler.

提交回复
热议问题