Saved Bookmarks
| 1. |
What are the types of memories supported in the .NET framework? |
|
Answer» Two types of memories are present in .NET. They are: Stack: Stack is a stored-value type that keeps TRACK of each EXECUTING THREAD and its location. It is used for static memory allocation. Heap: Heap is a stored reference type that keeps track of the more precise objects or DATA. It is used for DYNAMIC memory allocation. |
|