I have a XML like:
<choiceQuestion>
<questionBody>
<p>
Using a right Riemann sum over the given intervals, estimate
<m:math xmlns:m="http://www.w3.org/1998/Math/MathML">
<m:mstyle displaystyle="true">
<m:munderover>
<m:mrow>
<m:mo>∫</m:mo>
</m:mrow>
<m:mrow>
<m:mn>5</m:mn>
</m:mrow>
<m:mrow>
<m:mn>35</m:mn>
</m:mrow>
</m:munderover>
<m:mi>f</m:mi>
<m:mfenced>
<m:mrow>
<m:mi>t</m:mi>
</m:mrow>
</m:mfenced>
<m:mi>dt</m:mi>
</m:mstyle>
</m:math>
.
</p>
<p>
<img data-uuid="ae9daa28-5259-4006-8c46-4d6098cc902f"/>
</p>
</questionBody>
<choiceInteraction interactionId="301045" singleSelect="true">
<simpleChoice choiceId="choicea" correct="false">730</simpleChoice>
<simpleChoice choiceId="choiceb" correct="false">661</simpleChoice>
<simpleChoice choiceId="choicec" correct="false">564</simpleChoice>
<simpleChoice choiceId="choiced" correct="true">474</simpleChoice>
<simpleChoice choiceId="choicee" correct="false">325</simpleChoice>
</choiceInteraction>
</choiceQuestion>
I want to deserialize the XML and I need the content not to be deserialized and want it as XML string in a property inside the main class.
Please help.