.Net heap memory architecture

when we talk about the memory architecture of Windows => we are talking about a virtual memory manager that "gives" a piece of memory to a bunch of application manager that allocate the size of memory specified by the application.

( http://msdn.microsoft.com/en-us/library/ms810466.aspx )

But in .net => the managed .net heap "requests" memory from the virtual memory manager (I'm pretty sure that it is) or is there some layer between the managed .net heap and the virtual memory manager?

(this question is not related to GC)

+3
source share
1 answer

.NET . , , , gen0 GC ( ), . CRT, .

GC , / . , .

, SOS, WinDbg ( VS, , ).

: CLR # CLI . .

+3

All Articles