Is mscorlib.dll a CLR?

眉间皱痕 提交于 2019-12-04 13:16:31

问题


If it's not which I almost sure in, then what's the role of mscorlib.dll and where CLR is situated?


回答1:


CLR is not in mscorlib.dll but in MSCorEE.dll. I think that is what you were looking for. This is the main DLL loaded when an .NET exe assembly gets loaded.

See this question which probably answers you question.




回答2:


I believe this question covers most of what you're asking:

mscorlib.dll & System.dll




回答3:


mscorlib.dll is holding some fundamental classes of .net such as system.

use reflector to what classes and namespaces mscorlib.dll is carrying.

also your could find information on CLR here : http://msdn.microsoft.com/en-us/library/8bs2ecf4.aspx




回答4:


The actual CLR code is contained in a file whose name has changed with different versions of the CLR. For versions 1.0, 1.1, and 2.0, the CLR code is in a file called MSCorWks.dll, and for version 4.0, the CLR code is in a file called Clr.dll.



来源:https://stackoverflow.com/questions/5566534/is-mscorlib-dll-a-clr

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!