public static string GetValue(string AppKey)
{
//實例化xml解析器對象
System.Xml.XmlDocument xDoc = new System.Xml.XmlDocument();
//加載文檔
xDoc.Load(System.Windows.Forms.Application.StartupPath + "/user.config");
//xml文檔中的單個字節
System.Xml.XmlNode xNode;
//元素
System.Xml.XmlElement xElem1;
//選擇configuration第一個字節
xNode = xDoc.SelectSingleNode("//configuration");
xElem1 = (System.Xml.XmlElement)xNode.SelectSingleNode("//add[@key='" + AppKey + "']");
if (xElem1 != null)
{
//獲取指定名稱特新的值
return xElem1.GetAttribute("value");
}
else
{
return "";
}
}
有了它,你才能load一個xml文檔,你才能從它出發,去讀寫xml文檔。