共计 289 个字符,预计需要花费 1 分钟才能阅读完成。
C# 读取 XML 文件
try
{
XmlDocument xmlDoc = new XmlDocument();
xmlDoc.Load(@"types.xml");
XmlElement xmlRoot = xmlDoc.DocumentElement;
foreach (XmlNode node in xmlRoot.ChildNodes)
{Type type = new Type();
string num = node["num"].InnerText;
string desc = node["desc"].InnerText;
string content = node["content"].InnerXml;
}
}
catch {
}
正文完