Difference between native and managed code?

后端 未结 4 1296
情话喂你
情话喂你 2020-12-07 09:12

For example, when looking at the GlowCode profiler website it says:

\"GlowCode 6.2 and x64 profile native, managed, and mixed C++, C#, .NET code\"

What do th

4条回答
  •  情书的邮戳
    2020-12-07 09:59

    Code that runs under the control of the common language runtime (CLR) is known as managed code. Code that does not run under the CLR is known as native code.

提交回复
热议问题