Number of CLR and GC instances running on a machine?

前端 未结 4 1717
逝去的感伤
逝去的感伤 2020-12-29 10:59

I create 2 .NET applications and run them on a machine - how many CLR\'s and gc\'s will be there?

In addition: I would like to have some background information on ho

4条回答
  •  时光说笑
    2020-12-29 11:22

    Each process will have its own copy of the CLR as a hosting process. However, since the CLR is really just a couple of DLLs Windows will be able to share the DLLs between processes. For more information see: http://msdn.microsoft.com/en-us/magazine/cc301727.aspx

提交回复
热议问题