Is mscorlib.dll a CLR?

前端 未结 4 641
北海茫月
北海茫月 2021-02-10 09:29

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

相关标签:
4条回答
  • 2021-02-10 09:55

    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.

    0 讨论(0)
  • 2021-02-10 09:58

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

    mscorlib.dll & System.dll

    0 讨论(0)
  • 2021-02-10 10:03

    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.

    0 讨论(0)
  • 2021-02-10 10:04

    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

    0 讨论(0)
提交回复
热议问题