i have more than 10 list and i want to put it inside single foreach i tried (Tuple.Create) but it is limited for only 7 items and also tried (from in) the result of first item from it is repeated.
List<string> ALLmlist1 = new List<string>();
List<string> ALLmlist2 = new List<string>();
List<string> ALLmlist3 = new List<string>();
List<string> ALLmlist4 = new List<string>();
List<string> ALLmlist5 = new List<string>();
List<string> ALLmlist6 = new List<string>();
List<string> ALLmlist7 = new List<string>();
List<string> ALLmlist8 = new List<string>();
List<string> ALLmlist9 = new List<string>();
List<string> ALLmlist10 = new List<string>();
List<string> ALLmlist11 = new List<string>();
List<string> ALLmlist12 = new List<string>();
List<string> ALLmlist13 = new List<string>();
List<string> ALLmlist14 = new List<string>();
List<string> ALLmlist15 = new List<string>();
foreach(var item in all15list)
{
var i1 = item.Item1;
var i2 = item.Item2;
{
trying to look like this, hope you guys have other option thanks.
edit : im trying to get each list result in one foreach.
sorry im bad at english
>`.