我是linq到XML的新手。在你构建XDocument之后,你如何得到它的OuterXml,就像你用XmlDocument。
你只需要使用对象的覆盖ToString()方法:
原文链接:https://www.f2er.com/xml/293852.htmlpublic static string ToOuterXml(XDocument xmlDoc) { return xmlDoc.ToString(); }
这适用于所有XObject,如XElement等。