Created
          December 19, 2013 09:09 
        
      - 
      
- 
        Save hagbarddenstore/8036492 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
    
  
  
    
  | 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