Created
January 9, 2016 04:55
-
-
Save minitech/e91efc67fe0c3d23fa2b to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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