J'ai une chaîne (à partir d'un élément CDATA) qui contient une description de XML. J'ai besoin de décoder cette chaîne en une nouvelle chaîne qui affiche correctement les caractères en utilisant C#
Chaîne existante :
<?xml version="1.0" encoding="UTF-8" standalone="yes"?><myreport xmlns="http://test.com/rules/client"><admin><ordernumber>123</ordernumber><state>NY</state></report></myreport>
Chaîne recherchée :
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<myreport xmlns="http://test.com/rules/client">
<admin><ordernumber>123</ordernumber><state>NY</state></report></myreport>