Skip to content

Instantly share code, notes, and snippets.

@hagbarddenstore
Created December 19, 2013 09:09
Show Gist options
  • Save hagbarddenstore/8036492 to your computer and use it in GitHub Desktop.
Save hagbarddenstore/8036492 to your computer and use it in GitHub Desktop.
void Main()
{
var a = new List<List<int>>
{
new List<int> { 1, 2, 3 },
new List<int> { 4, 5, 6, 7, 8, 9 }
};
Console.WriteLine(a.Count);
Console.WriteLine(a[0].Count);
Console.WriteLine(a[1].Count);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment