Skip to content

Instantly share code, notes, and snippets.

@erikdietrich
Created March 18, 2013 00:42
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 erikdietrich/5184313 to your computer and use it in GitHub Desktop.
Save erikdietrich/5184313 to your computer and use it in GitHub Desktop.
static void Main(string[] args)
{
var pieces = new List<MailPiece>();
for (long index = 0; index < 23458333; index++)
{
pieces.Add(new Letter() { DestinationZip = (int)(index % 100000) });
}
Console.ReadLine();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment