Wednesday 19 August 2015

What is code manager task in .Net

      It is a part of the CLR.Which is responsible to deside which part of the application must be taken into application domain.

2 comments:

  1. Code manager is responsible for loading .net application code in to memory and manage it until .net application is closed. The .net application code that is loaded in to memory and is running under the control of code manager is called as managed code and the .net application code that is loaded in to memory but is not under the control of code manager and is under the control of O/S is called as unmanaged code. Examples of unmanaged code are the code that communicates with O/S files and folders and network connections.

    ReplyDelete
  2. thank you sir, It was helpful!!

    ReplyDelete