I have this XML file which I am having troubles deserializing it, so I'm going kind of way around it. I have an XML string and I want to get a value out of it. Let's say this is my XML string:
string XMLstring = "<note>
<to>Tove</to>
<from>Jani</from>
<heading>Reminder</heading>
<body>Don't forget me this weekend!</body>
<InputText>123</InputText>
<InputText>Apple</InputText>
<InputText>John</InputText>
</note>";
Now, I have tried something like checking if the XMLstring contains InputText, but I want someway to get all the three values from there and then use them somewhere. Is there any way I can do this without having to deserialize it?