共用方式為


HOW TO:擷取屬性的集合 (LINQ to XML)

本主題說明 Attributes 方法。 這個方法會擷取項目的屬性。

範例

下列範例顯示如何逐一查看項目之屬性的集合。

XElement val = new XElement("Value",
    new XAttribute("ID", "1243"),
    new XAttribute("Type", "int"),
    new XAttribute("ConvertableTo", "double"),
    "100");
IEnumerable<XAttribute> listOfAttributes =
    from att in val.Attributes()
    select att;
foreach (XAttribute a in listOfAttributes)
    Console.WriteLine(a);
Dim val = _
    <Value ID="1243" Type="int" ConvertableTo="double">100</Value>
Dim listOfAttributes As IEnumerable(Of XAttribute) = _
    From att In val.Attributes() _
    Select att
For Each att As XAttribute In listOfAttributes
    Console.WriteLine(att)
Next

此程式碼會產生下列輸出:

ID="1243"
Type="int"
ConvertableTo="double"

請參閱

概念

LINQ to XML 座標軸