Is C# partially interpreted or really compiled?

后端 未结 13 1103
别跟我提以往
别跟我提以往 2020-12-07 11:51

There is a lot of contradicting information about this. While some say C# is compiled (as it is compiled into IL and then to native code when run), others say it\'s interpre

13条回答
  •  北海茫月
    2020-12-07 12:36

    C#, like Java, has a hybrid language processor. Hybrid processors perform the jobs of both interpretation and compilation.

提交回复
热议问题