Skip to content

Instantly share code, notes, and snippets.

@chamons
Created July 29, 2016 14:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save chamons/9e95face9ddf450c3773d21dc5c694e5 to your computer and use it in GitHub Desktop.
Save chamons/9e95face9ddf450c3773d21dc5c694e5 to your computer and use it in GitHub Desktop.
new System.Threading.Thread (() =>
{
while (true) {
System.Threading.Thread.Sleep (100);
GC.Collect ();
}
}).Start ();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment