I have an input string with a few times escaped XML inner text. E.g.:
<anode>some &quot;inner&quot; text</anode>
I'd like to have (in a variable) value:
some "inner" text
How can I do it in C#?
I want the solution to handle triple-encoded cases (and N-encoded cases). I.e. &amp;quot;
Not only "
is interesting me, but any other encoded symbol (e.g. lt, gt
etc).