Skip to content

Instantly share code, notes, and snippets.

@vbfox
Created June 6, 2017 09:49
Show Gist options
  • Save vbfox/3004ce76a66a6a6f639ce544b8f73f10 to your computer and use it in GitHub Desktop.
Save vbfox/3004ce76a66a6a6f639ce544b8f73f10 to your computer and use it in GitHub Desktop.
using System;
using System.Collections.Generic;
static class Program {
static int Run() {
for (int i = int.MaxValue; ; i -= 1024*1024)
{
try
{
var s = new String('\0', i);
}
catch(OutOfMemoryException)
{
}
}
return 0;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment