Skip to content

Instantly share code, notes, and snippets.

@minitech
Created January 9, 2016 04:55
Show Gist options
  • Save minitech/e91efc67fe0c3d23fa2b to your computer and use it in GitHub Desktop.
Save minitech/e91efc67fe0c3d23fa2b to your computer and use it in GitHub Desktop.
using System;
using System.Collections.Generic;
static class Application {
static void Main() {
var list = new List<int>();
for (int i = 0; i < 100; i++) {
Console.WriteLine("{0,5}/{1,5}", list.Count, list.Capacity);
list.Add(i);
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment