我有一个自定义配置文件 。
<Students>
<student>
<Detail Name="abc" Class="1st Year">
<add key="Main" value="web"/>
<add key="Optional" value="database"/>
</Detail>
</student>
</Students>
I read this file through the IConfigurationHandler interface implementation. When I read the childNode attributes of Detail element. It return me below result into Immediate Window of IDE.
elem.Attributes.ToObjectArray()
{object[2]}
[0]: {Attribute, Name="key", Value="Main"}
[1]: {Attribute, Name="value", Value="web"}
当我试着在控制台上写作时
Console.WriteLine("Value {0} ",elem.Attributes.ToObjectArray());
它真的还回了我
Value : System.Configuration.ConfigXmlAttribute
elem.Attrittes.trom(1)
方法给了我姓名和价值的细节,但这里我需要传递我目前不知道的属性的索引值。
我想通过 < strong> LINQ 查询 和主控台上每个子节点属性的个人显示获得属性的名称和值,具体如下:
Value : Name="Key" and Value="Main"
Name="value", Value="web"
我如何才能做到这一点?