首頁 > 後端開發 > C++ > 如何使用C#的XmlDocument存取XML屬性?

如何使用C#的XmlDocument存取XML屬性?

Linda Hamilton
發布: 2025-01-06 09:25:40
原創
552 人瀏覽過

How to Access XML Attributes Using C#'s XmlDocument?

使用 XmlDocument 存取 XML 屬性

使用 C# 的 XmlDocument 讀取 XML 屬性可以透過簡單的方法來實現。考慮以下 XML 文件:

<?xml version="1.0" encoding="utf-8" ?>
<MyConfiguration xmlns="http://tempuri.org/myOwnSchema.xsd" SuperNumber="1" SuperString="whipcream">
    <Other stuff />
</MyConfiguration>
登入後複製

要檢索屬性 SuperNumber 和 SuperString,您可以使用以下程式碼:

// Load the XML document
XmlDocument doc = new XmlDocument();
doc.Load("myConfig.xml");

// Get the specified element by its tag name
XmlNodeList elemList = doc.GetElementsByTagName("MyConfiguration");

// Iterate through the matching elements
for (int i = 0; i < elemList.Count; i++)
{
    // Access the attribute value
    string attrVal = elemList[i].Attributes["SuperString"].Value;
}
登入後複製

此程式碼片段使用 GetElementsByTagName 方法來尋找 MyConfiguration元素。然後,它會迭代結果列表並使用 Attributes 屬性存取“SuperString”屬性。屬性物件的 Value 屬性提供實際的屬性值。

透過利用此方法,您可以使用 C# 中的 XmlDocument 類別輕鬆讀取和處理 XML 屬性。

以上是如何使用C#的XmlDocument存取XML屬性?的詳細內容。更多資訊請關注PHP中文網其他相關文章!

來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
作者最新文章
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板