I have a problem that I think simple but I can't resolve it :D
I have a List and I want to get for exemple the second value of the second Object of this List. But, How can I do that ??
This is an example of the List display into the browser :
[[248,6,"Expired"],[123,2,"In Progress"]]
And my code :
List<Object[]> myList = ......; // myList contains the two objects display above.
For example, I want to get ( for do tests on this ) the second value of the second object in my example, so in this example : '2';
Thanks for your help