I have a multidimensional array.
The contents look like this in the debugger.
The array is setup as
String[,] s = new String[6,4]
.
A B Yes C
A B Yes C
A B No C
A B Yes C
A B Yes C
A B Yes C
A B No C
A B Yes C
I basically need to know which row's say No but I am having a tough time parsing the array. Any help would be appreciated.
List<MyData>?