using System.Collections.Generic;
public static void Main()
List<List<Strip>> listOfStripLists = new List<List<Strip>>();
for(int j = 65; j < 100; j++){
List<Strip> stripList = new List<Strip>();
for(int i = 0; i < 10; i++){
stripList.Add(new Strip(){myval = ((char)j).ToString() + i.ToString()});
listOfStripLists.Add(stripList);
Console.WriteLine(listOfStripLists[0][1].myval);
public string myval {get;set;}