Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何将实例中XML包含的内容XmlReader写入 Visual Studio 中的即时窗口?似乎ToString()可以解决问题,但它没有......
XML
XmlReader
ToString()
你想调试 XmlReader 吗?根据我的经验,放弃更容易。
尽管您可以XDocument.Load(reader).ToString()将阅读阅读器的内容称为结束,从而使其进一步无法使用。但是,您可以从生成的文档中初始化新的阅读器。为了更容易编写一个辅助方法。
XDocument.Load(reader).ToString()
尝试这个:
reader.MoveToContent(); reader.ReadOuterXml();
但请注意,XmlReader 将不再可用。