Number of CLR and GC instances running on a machine?

前端 未结 4 1737
逝去的感伤
逝去的感伤 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条回答
  •  Happy的楠姐
    2020-12-29 11:23

    The CLR is actually the component that transforms MSIL into native machine code. That native machine code then runs in its own process for each application.

    And in the .NET world a process is closely related to an appdomain. That's why I think this is a good starting point.

提交回复
热议问题