프로그램은 AppDomain이 호스팅한다. Process가 직접 하지 않는다.
Under the .NET platform, executables are not hosted directly within a Windows process, as is the case in traditional unmanaged applications.
Rather, a .NET executable is hosted by a logical partition within a process termed an application domain.
It is important to point out that the CLR does not permit unloading individual .NET assemblies. However, using the AppDomain.Unload()method, you are able to selectively unload a given application domain from its hosting process.
Rather, a .NET executable is hosted by a logical partition within a process termed an application domain.
It is important to point out that the CLR does not permit unloading individual .NET assemblies. However, using the AppDomain.Unload()method, you are able to selectively unload a given application domain from its hosting process.
댓글
댓글 쓰기