在C# 中使用XmlDocument 讀取XML 屬性
在C# 中處理XML 文件時,XmlDocument 類別提供了一個便捷的操作和檢索方法資料。一項常見任務是存取與 XML 元素關聯的屬性。屬性提供對應用程式邏輯至關重要的附加資訊。
要使用XmlDocument 擷取XML 屬性,請依照下列步驟操作:
// Load the XML document XmlDocument doc = new XmlDocument(); doc.LoadXml(xmlString); // Get the element list XmlNodeList elemList = doc.GetElementsByTagName("MyConfiguration"); // Iterate over the elements and access attributes foreach (XmlNode elem in elemList) { string superNumber = elem.Attributes["SuperNumber"].Value; string superString = elem.Attributes["SuperString"].Value; }使用Attributes屬性,您可以存取與元素關聯的任何屬性,從而提供了從 XML 文件中提取其他資料的強大方法。
以上是如何在 C# 中使用 XmlDocument 讀取 XML 屬性?的詳細內容。更多資訊請關注PHP中文網其他相關文章!