Android Question Get item from list

Hello! I feel stupid, but I couldn't find an answer. For example:

Dim dd As List
dd.Initialize
dd.add(Array(1,1,2,3,4,5))
dd.add(Array(1,11,22,33,44,55))
dd.add(Array(1,111,222,333,444,555))
dd.add(Array(1,1111,2222,3333,4444,5555))

Here's how to get, say, the value "333" from a list?
It is understood that it's address will be (2,3), like in classic arrays. But the list only allows dd.get(i), not (i,j).
Dim a() as string = dd.get(2), let us array "a" with data from list row.
But how to get it directly, without intermediate operations?
 
Last edited:
Top