我对 C# 很陌生。我有 XML 文件 (text.xml)。我想在 XmlDocument 中读取它并将流存储在字符串变量中。

最佳答案

使用 XmlDocument.Load() 方法从您的文件加载 XML。然后使用 XmlDocument.InnerXml 属性获取 XML 字符串。

XmlDocument doc = new XmlDocument();
doc.Load("path to your file");
string xmlcontents = doc.InnerXml;

关于c# - 将 XML 文件读入 XmlDocument,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/9105009/

10-13 08:11