【发布时间】:2019-08-01 12:17:47
【问题描述】:
在阅读.NET 的基础知识(如Managed and Unmanaged code)时,代码在CLR and developed in .NET framework is managed 下运行,而unmanaged does not run under CLR and developed outside the .NET framework 下运行。 Moreover,思考和了解practicalities 关于代码和how they run 和how the compiler knows the type 的代码是bit confusing。所以,为了摆脱这种困惑,觉得在这里问这个。
请让我知道这件事。
提前致谢!! :)
【问题讨论】:
-
哪个编译器?就 csc 而言,它始终以托管平台 (MSIL) 为目标。该 IL 可能 稍后会被转换(IL2CPP 等)。还是你的意思是 C++ 编译器?
-
@MarcGravell 不,不是 C++ 编译器。 .NET 中的编译器
标签: c# .net compilation unmanaged managed