hello,

I have the following xml structure which I load into a DataRow (the xml
document is loaded into a dataset...)

<EXMAPLE_NODE>
<A>string1</A>
<B>string2</B>
<C>string3</C>
<D>string4_1</D>
<D>string4_2</D>
<D>string4_3</D>
</EXMAPLE_NODE>


I know I can Access nodes A,B &C using indexed access. How can I access
the D nodes (I don't want unique names for them)?

Is there anyway to access these via a foreach iteration?

Thank you in advance,

Jamie