仅供参考,这与我上一期的问题非常相似:Is there a faster way to check for an XML Element in LINQ to XML?
目前我正在使用以下扩展方法来检索使用LINQ to XML的元素的bool值。它使用Any()来查看是否有任何具有给定名称的元素,如果有,则解析bool的值。否则,它返回false。这个方法的主要用途是当我将XML解析为C#对象时,所以当一个元素不存在时,我不希望任何东西爆炸。我可以改变它来尝试解析,但是现在我假设如果元素在那里,那么解析应该成功。
有更好的方法吗?
/// <summary>
/// If the parent element contains a element of the specified name, it returns the value of that element.
/// </summary>
/// <param name="x">The parent element.</param>
/// <param name="elementName">The name of the child element to check for.</param>
/// <returns>The bool value of the child element if it exists, or false if it doesn't.</returns>
public static bool GetBoolFromChildElement(this XElement x, string elementName)
{
return x.Elements(elementName).Any() ? bool.Parse(x.Element(elementName).Value) : false;
}
答案 0 :(得分:4)
与上次非常相似:
return ((bool?) x.Element(elementName)) ?? false;
注意使用转换为可空的布尔类型,而不是非可空版本;如果输入为空,则非可空版本将抛出异常。
在此使用null-coalescing运算符意味着整体表达式类型只是bool
。