Skip to content

Instantly share code, notes, and snippets.

@erikdietrich
Created March 18, 2013 00:47
Show Gist options
  • Save erikdietrich/5184327 to your computer and use it in GitHub Desktop.
Save erikdietrich/5184327 to your computer and use it in GitHub Desktop.
static void Main(string[] args)
{
var zipCodes = new List<int>();
var letter = new Letter();
for (int index = 0; index < 23458333; index++)
{
zipCodes.Add(index % 100000);
Console.Write(string.Format("Zip code is {0}, postage is {1} and height is {2}",
zipCodes[index], letter.Postage, letter.Height));
}
Console.ReadLine();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment