Skip to content

Instantly share code, notes, and snippets.

@nishanc
Created August 6, 2023 12:31
Show Gist options
  • Save nishanc/eb97ee8a7222c84443a095a322e0c7d5 to your computer and use it in GitHub Desktop.
Save nishanc/eb97ee8a7222c84443a095a322e0c7d5 to your computer and use it in GitHub Desktop.
AppContext.SetData("GCHeapHardLimit", (ulong)100 * 1024 * 1024);
MethodInfo refreshMemoryLimitMethod = typeof(GC).GetMethod(
"_RefreshMemoryLimit", BindingFlags.NonPublic | BindingFlags.Static);
refreshMemoryLimitMethod.Invoke(null, Array<object>.Empty);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment