Roast topics
Find topics
Roast it!
Roast topics
Find topics
Find it!
Login
From:
x += x++
(Uncensored)
subscribe
Stopping Garbage Collection in .NET Core 3.0 (part I) – x += x++
https://lucabolognese.wordpress.com/2019/01/14/stopping-garbage-collection-in-net-core-3-0-part-i/
links
backlinks
Tagged with:
c#
net core
The main idea is to use [ETW events]( to detect when a GC occurs and to call an user provided delegate at that point. You can then do whatever you want in the delegate (i.e. shutdown the process, s…