私はこのような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>
これを正しく行う方法は?