Skip to content

Instantly share code, notes, and snippets.

@Arsenii123
Created November 25, 2025 19:49
Show Gist options
  • Select an option

  • Save Arsenii123/4155903fbd42bcf52033f4a9de1d3606 to your computer and use it in GitHub Desktop.

Select an option

Save Arsenii123/4155903fbd42bcf52033f4a9de1d3606 to your computer and use it in GitHub Desktop.
benchmark
GC.RegisterForFullGCNotification(10, 10);
while (true)
{
var status = GC.WaitForFullGCApproach();
if (status == GCNotificationStatus.Succeeded)
{
Console.WriteLine("GC is about to run");
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment