Advertisement
Guest User

Untitled

a guest
Jun 17th, 2019
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. Console.WriteLine($"Allocated memory: {GC.GetTotalMemory(false)}");
  2. var array = new byte[1073741824]; // 1024 ^ 3
  3. Console.WriteLine($"Allocated memory: {GC.GetTotalMemory(false)}");
  4.  
  5. Allocated memory: 160872
  6. Allocated memory: 1073902752
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement