Linqpad x64 8.2.4 Memory Leak?
Just starting Linqpad 8 x64 (not x86) does a huge spike in RAM - 4GB.
RamMap helped me discover that was exlusively due to the increase in the Paged Pool .
This doesn't happen with the 32bit version or Linqpad7.
Restarting the computer didn't do anything.
Comments
Running poolmon - the MwSt tag was the culprit. Still not sure what is going on.
Turns out it's a .NET7 "bug" with Windows7
fix from https://github.com/dotnet/runtime/issues/79469
to set at least the ENV VAR
DOTNET_EnableWriteXorExecute=0
works for me.