Is mscorlib.dll a CLR?

2019-03-21 13:40发布

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

4条回答
霸刀☆藐视天下
2楼-- · 2019-03-21 14:03

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.

查看更多
Evening l夕情丶
3楼-- · 2019-03-21 14:07

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.

查看更多
叛逆
4楼-- · 2019-03-21 14:09

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

查看更多
兄弟一词,经得起流年.
5楼-- · 2019-03-21 14:15

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

mscorlib.dll & System.dll

查看更多
登录 后发表回答