-
C# Memory Management - Part 1 *C# has stacks and heaps
- stacks are fast, limited memory but can't be accessed randomly (instead LIFO last in first out)
- heaps slower, abundant memory that can be accessed and allocated in any order
-
https://medium.com/c-programming/c-memory-management-part-2-finalizer-dispose-d3b3e43c08d1
-
https://medium.com/c-programming/c-memory-management-part-3-garbage-collection-18faf118cbf1
-
Learn how memory management works within your chosen language: