Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CSHARP

2d list in c#

List<List<int>> list = new List<List<int>>{
         new List<int> { 1, 2, 3 },
         new List<int> { 4, 5, 6 },
         new List<int> { 9, 8, 9 }
};
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #list
ADD COMMENT
Topic
Name
1+9 =