Hi All,
I have a nest list and i need to get the indivdual columns
i can do a foreach and the sublist has the 4 arrays but i cant access each columns
e.g. the first column is 1
2
the second column is 5
8
Thanks for the help.
List<List<float>> myList = new List<List<float>>();
myList.Add(new List<float> { 1, 2 });
myList.Add(new List<float> { 5, 8 });
myList.Add(new List<float> { 4, 44 });
myList.Add(new List<float> { 9, 7 });
foreach (List<float> sublist in myList)
{
foreach (float item in sublist)
{
}
}