c# – LINQ Xelement当子节点存在时返回null

前端之家收集整理的这篇文章主要介绍了c# – LINQ Xelement当子节点存在时返回null前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一个像这样的 XML文件,我想读取ID,短名称,名称节点值.
<?xml version="1.0" encoding="UTF-8" standalone="yes" ?> 
<AccountingUnitList xmlns="http://www.google.com">
<AccountingUnit>
<ID>17406</ID> 
<ShortName>test</ShortName> 
<Name>test</Name> 
</AccountingUnit>
<AccountingUnit>
<ID>18006</ID> 
<ShortName>ANOTHERtest</ShortName> 
<Name>Anothertest</Name> 
</AccountingUnit>
<AccountingUnit>
<ID>18046</ID> 
<ShortName>RKU</ShortName>
<Name>hospital</Name> 
</AccountingUnit>
<AccountingUnit>
<ID>18047</ID> 
<ShortName>MNU</ShortName> 
<Name>MNU</Name> 
</AccountingUnit>
</AccountingUnitList>

递归读取Node元素的最佳方法是什么?

这就是我尝试读取Node值的方法

var accountingunit = ( 
                from e in XDocument.Parse(textresult).Root.Elements("AccountingUnit")
                select new node
                {
                     idvalue = (string)e.Element("ID"),shortname =(string)e.Element("ShortName"),name = (string)e.Element("Name"),});

            foreach(var unit in accountingunit)
            {
               Console.WriteLine("ID"+ unit.idvalue + unit.name + unit.shortname);
            }

这是节点consructor:

public class node
{
    public string idvalue { get; set; }
    public string shortname { get; set; }
    public string name { get; set; }
}

解决方法

您的文档中有一个xml命名空间.ContetingUnitList的所有子元素都继承了命名空间,因此您需要通过元素名称指定它:
XNamespace ns = "http://www.google.com";

var accountingunit = ( 
            from e in XDocument.Parse(textresult).Elements(ns + "AccountingUnit")
            select new node
            {
                 idvalue = (string)e.Element(ns + "ID"),shortname =(string)e.Element(ns + "ShortName"),name = (string)e.Element(ns + "Name"),});
原文链接:https://www.f2er.com/csharp/97172.html

猜你在找的C#相关文章