how to get direct value from a list that contain an array ?
hey guys , i want to directly get a certain value from a list that contain an array
List<int[]> myList = new List<int[]>();
myList.Add( new int[2] { 10, 11 } );
its clear for me to get this using foreach loop like
foreach ( int[] p in mylist)
console.write(p[0]);
i do want to retrive this single data using expression like list[0] for list of integers
thanks..
int v = myList[0][0];– Henk Holterman Dec 16 '12 at 22:12