mscordacwks.dll and mscorwks.dll confusions

后端 未结 1 1699
后悔当初
后悔当初 2021-02-20 02:06

What are the different functions mscordacwks.dll and mscorwks.dll performing in .Net framework runtime, build and in debugging process? Are there any recommended readings for th

1条回答
  •  长情又很酷
    2021-02-20 02:53

    mscorwks is the main MS CLR implementation.

    mscordacwks provides a data-access abstraction over the CLR details, so that debuggers (such as SOS) don't need to know too much about the internals of mscorwks. A discussion is given here.

    But in general, you simply don't need to work with these - so unless you're writing your own IDE/debugger, you can probably leave them alone.

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