I have stored one arraylist list into 2nd arraylist and a third arraylist contains 2nd arraylist list.
deliveries arraylist contains list of product and each product list contain list of productdetails.
Now how to get the first productdetails list in deliveries arraylist.
I tried this but not working
Let suppose I want first enter in productdetails arraylist.
( (ArrayList)deliveries0[0] )[0].GetValue(1).ToString()
ArrayListis old, you should useList<T>instead, and your structure should be a list of custom classes (e.g. delivery) having a Property that is a list of other classes (e.g. product) and so on...