CLR vs运行时vs Host

| 在这里http://msdn.microsoft.com/en-us/library/zaf1h1h5(v=VS.90).aspx它说: 在.NET Framework 2.0版中,CLR提供了宿主管理界面来控制宿主运行时的许多功能,使宿主应用程序能够实现运行时提供的其他管理界面,并允许您实现自己的宿主管理界面。 为了便于发现,管理接口分为两大类:
Management interfaces that the
主机
implements and the
运行时
discovers through the IHostControl interface.
Management interfaces that the
CLR
provides and the host discovers through the ICLRControl interface.
您能否解释这些大胆的词是什么? 谢谢。
已邀请:
CLR是公共语言运行时,所有dotnet应用程序都在其下运行。 主机(在这种情况下)是托管在其下的CLR的未管理应用程序,因此托管代码可以在其上下文中运行(例如SQL Server,IIS等)。您提供的链接的父页面对此进行了说明。 \“运行时\”返回CLR。 更新资料 请参阅此MSDNMag文章,详细了解CLR托管API。

要回复问题请先登录注册