Guys tell me how in C # without a heap of cycles to loop through several List'ov? For example, there are 3 arrays.
List<string> list1 = new List<string>() {"1","2","3"}; List<string> list2 = new List<string>() {"4","5"}; List<string> list3 = new List<string>() {"6",};`` How to loop through them in one cycle?