English 中文(简体)
通过 System. Linq 获取 C# 中元素的属性名称和值
原标题:Get attributes Name and Value of element in C# through System.Linq

我有一个自定义配置文件 。

<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"

我如何才能做到这一点?

最佳回答

如果您想要使用此 < a href=" "https://github.com/ ChuckSavage/XmlLib/" rel="nofollow" >Xml 图书馆 , 您可以用此代码获取所有学生及其详细信息 :

XElement root = XElement.Load(file); // or .Parse(string)
var students = root.Elements("student").Select(s => new
{
    Name = s.Get("Detail/Name", string.Empty),
    Class = s.Get("Detail/Class", string.Empty),
    Items = s.GetElements("Detail/add").Select(add => new
    {
        Key = add.Get("key", string.Empty),
        Value = add.Get("value", string.Empty)
    }).ToArray()
}).ToArray();

然后,他们就轮流著服侍他们。

foreach(var student in students)
{
    Console.WriteLine(string.Format("{0}: {1}", student.Name, student.Class));
    foreach(var item in student.Items)
        Console.WriteLine(string.Format("  Key: {0}, Value: {1}", item.Key, item.Value));
}
问题回答

您可以使用 Linq 选择 string. join 来获取您想要的输出 。

string.Join(Environment.NewLine, 
    elem.Attributes.ToObjectArray()
        .Select(a => "Name=" + a.Name + ", Value=" + a.Value)
)

这将获得您在问题中声明的详细元素子元素的所有子元素的属性 。

XDocument x = XDocument.Parse("<Students> <student> <Detail Name="abc" Class="1st Year"> <add key="Main" value="web"/> <add key="Optional" value="database"/> </Detail> </student> </Students>");

var attributes = x.Descendants("Detail")
                  .Elements()
                  .Attributes()
                  .Select(d => new { Name = d.Name, Value = d.Value }).ToArray();

foreach (var attribute in attributes)
{
     Console.WriteLine(string.Format("Name={0}, Value={1}", attribute.Name, attribute.Value));
}

如果您在您所写的 obobject [] 中拥有 属性 , 可以被您所写的 object [] 模拟

var Attributes = new object[]{
    new {Name="key", Value="Main"},
    new {Name="value", Value="web"}
};

那么问题就在于您有 < b> 匿名类型 ,其名称不容易提取。

查看此代码( 您可以将其粘贴到 LinqPad 编辑器窗口的主 () 方法 ) :

var linq=from a in Attributes
let s = string.Join(",",a).TrimStart( { ).TrimEnd( } ).Split( , )
select new 
{
    Value = s[0].Split( = )[1].Trim(),
    Name = s[1].Split( = )[1].Trim()
};
//linq.Dump();

由于您无法访问 Atrittes 变量在 object[] 数组中的名称和值属性, 因为编译者隐藏了这些属性, 所以这里的技巧是使用 join (), a)

All you need to do afterwards is to trim and split the resulting string and finally create a new object with Value and Name properties. You can try it out if you uncomment the linq.Dump(); line in LinqPad - it returns what you want and it is furthermore queryable by Linq statements.





相关问题
Anyone feel like passing it forward?

I m the only developer in my company, and am getting along well as an autodidact, but I know I m missing out on the education one gets from working with and having code reviewed by more senior devs. ...

NSArray s, Primitive types and Boxing Oh My!

I m pretty new to the Objective-C world and I have a long history with .net/C# so naturally I m inclined to use my C# wits. Now here s the question: I feel really inclined to create some type of ...

C# Marshal / Pinvoke CBitmap?

I cannot figure out how to marshal a C++ CBitmap to a C# Bitmap or Image class. My import looks like this: [DllImport(@"test.dll", CharSet = CharSet.Unicode)] public static extern IntPtr ...

How to Use Ghostscript DLL to convert PDF to PDF/A

How to user GhostScript DLL to convert PDF to PDF/A. I know I kind of have to call the exported function of gsdll32.dll whose name is gsapi_init_with_args, but how do i pass the right arguments? BTW, ...

Linqy no matchy

Maybe it s something I m doing wrong. I m just learning Linq because I m bored. And so far so good. I made a little program and it basically just outputs all matches (foreach) into a label control. ...