程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程綜合問答 >> xml-XmlDocument 在C#中有什麼作用呢

xml-XmlDocument 在C#中有什麼作用呢

編輯:編程綜合問答
XmlDocument 在C#中有什麼作用呢

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文檔。

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved