I'm looking to split an XML document into a list of strings but I'm totally at a loss.
<RISKCALC-OUT>
<AUTHENTICATION>
<USERID></USERID>
</AUTHENTICATION>
<OPERATION-LIST>
<OPERATION MODEL="PRV" SUBMODEL="GBR40EDF" VERSION="4.0" FUNCTION="EDFCLC" TARGET="New Platform">
.......
</OPERATION>
<OPERATION MODEL="PRV" SUBMODEL="GBR40EDF" VERSION="4.0" FUNCTION="EDFCLC" TARGET="New Platform">
.....
</OPERATION>
</OPERATION-LIST>
</RISKCALC-OUT>
I'm trying to split this file into strings, so that everything below the first operation node is in one string, and then everything below the second operation node is in a second string.
I've been playing around with XmlNodeLists but I haven't got anywhere. I don't need a total answer, just how to separate them ready to put in to separate strings.
Thanks for your help.