So I have this xml
<document>
<Month>
<Depth>-0,25</Depth>
<October>0,95</October>
<November>-0,90</November>
...
</Month>
<Month>
<Depth>-0,5</Depth>
<October>0,47</October>
<November>-0,17</November>
...
</Month>
...
</document>
I've searched a bit and I saw some way to do it with linq but only with a 1D array, becasue what I would like to eventually end up with would be
Array[0,0] = -0.25
Array[0,1] = 0.95
Array[0,2] = -0.90
...
double[,]or could it be adouble[][]? (Also note that numbers in XML files are typically written using the invariant culture... it's odd to see a,as the decimal separator.)