有没有办法检查 C# Linq 中的元素以查看值是什么?

Is there a way to check element in C# Linq to see what the value is?

我的程序可以有两种不同的 xml 文件。分辨差异的唯一方法是查看它来自什么设备。我如何从此 xml 文档中获取设备名称?

<?xml version="1.0" encoding="UTF-8"?>
<DataFileSetup>
    <System Name="Local">
        <SysInfo>
            <Devices>
                <RealMeasurement>
                    <Hardware></Hardware>
                    <Device Type="MultiDevice">
                        <DriverBuffSizeInSec>5</DriverBuffSizeInSec>
                        <Card Index="0">
                            <DeviceName>SIRIUSi</DeviceName>
                            <DeviceSerialNumber>D017F09216</DeviceSerialNumber>
                            <FirmwareVersion>7.3.45.75</FirmwareVersion>
                            <VCXOValue>8802</VCXOValue>
                        </Card>
                    </Device>
                </RealMeasurement>
              </Devices>
            </SysInfo>
         </System>
   </DataFileSetup>

简单

var deviceType = xdoc.Element("DeviceName").Value;

错误是因为那里什么都没有,或者如果我删除 .Value 它只是空的。

有没有简单的方法可以得到这个值?

请尝试以下操作。

c#

void Main()
{
    const string fileName = @"e:\temp\device.xml";

    XDocument xdoc = XDocument.Load(fileName);
    Console.WriteLine(xdoc.Descendants("DeviceName").FirstOrDefault()?.Value);
}

Output

SIRIUSi

我喜欢在这种情况下使用字典:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Xml;
using System.Xml.Linq;

namespace ConsoleApplication1
{
    class Program
    {
        const string FILENAME = @"c:\temp\test.xml";
        static void Main(string[] args)
        {
            XDocument doc = XDocument.Load(FILENAME);

            Dictionary<string, XElement> dict = doc.Descendants("Device")
                .GroupBy(x => (string)x.Descendants("DeviceName").FirstOrDefault(), y => y)
                .ToDictionary(x => x.Key, y => y.FirstOrDefault());
        }
    }
}