Skip to content

Instantly share code, notes, and snippets.

@erikdietrich
Created March 17, 2013 22:17
Show Gist options
  • Save erikdietrich/5183892 to your computer and use it in GitHub Desktop.
Save erikdietrich/5183892 to your computer and use it in GitHub Desktop.
static void Main(string[] args)
{
var pieces = new List<MailPiece>();
for(long index = 0; index < 563000000; index++)
{
pieces.Add(new Letter() { DestinationZip = (index % 100000).ToString() });
}
Console.ReadLine();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment