C#读取XML属性解决方法

C#读取XML属性解决方法

Xml示例 ]]>

读取节点row当中的 PatientCode、PatientName。。。中的值

var xml = new XmlDocument();
xml.LoadXml(@"xml")
var xmlrow = new XmlDocument();
 xmlrow.LoadXml(xml.InnerText);
 //读取此节点上的属性,返回一个List
XmlNodeList elemlist = xmlrow.GetElementsByTagName("row");
 for (int i = 0; i < elemlist.Count; i++)
                {
                    string PatientCode = elemlist[i].Attributes["PatientCode"].Value;
                    string PatientName = elemlist[i].Attributes["PatientName"].Value;
                    string Score = elemlist[i].Attributes["ScreeningScore"].Value;
                    string Apprise = elemlist[i].Attributes["ScreeningApprise"].Value;
                }

你可能感兴趣的:(实时笔记)