looping array inside list in c#
- by 3yoon af
I have a list of array that contains multiple arrays.
each array has 2 index ..
First, I want to loop the list. Then i want to loop the array inside the list ..
How can i do that ?
I try to use this way, but it doesn't work !
foreach (string[] s in ArrangList1)
{
int freq1 = int.Parse(s[1]);
foreach (string[] s1 in ArrangList)
{
…