Here is my problem: I have an object "Strip" and I need to have a list or array of these strips "stripList" and after that I need to have a list from different stripList that I called it "listOfStripList". I know that I can save the in this way:
List<List<Strip>> listOfStripList=new List<List<Strip>>();
the reason that I want to have this objects in this way is because in each time I want to have access to the each stripList without using For Loop. For example I want to say listOfStripList[1] and this related to the first list of strips.
Is there any way to define these list by Array?