Is C# partially interpreted or really compiled?

后端 未结 13 1101
别跟我提以往
别跟我提以往 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:44

    C# is compilable language.

    Probably, as I met too those kind of opinions, the fact that someone thinks that there is an Interpreter for C# language, is due the kind of projects like

    C# Interpreter Console

    or, for example, famous

    LinqPAD

    where you can write just lines of the code and execute them, which brings to think that it's Python like language, which is not true. It compiles those lines and executes them, like a ordinary compilable programming language (from workflow point of view).

提交回复
热议问题