我有这样的xml
XElement xe = "<root>
<mynode>
Text with link <a href=''>Test</a>
</mynode>
</root>";
public static string GetHtmlFromXElement(this XElement xe)
{
return xe.ToString();
}
如果我使用
string result = xe.Element("mynode").GetHtmlFromXElement();
我明白了
<mynode>Text with link <a href=''>Test</a></mynode>
但是我需要
Text with link <a href=''>Test</a>
如何正确地做到这一点?