Hey guys,
I'm trying to get all nodes from an XElement that actually has a value, currently I'm using this code:
var nodes = from node in elem.Nodes()
where node.NodeType == XmlNodeType.Element &&
((XElement) node).Value.Length > 0
select node;
Is there a build in operator to do this operation?
Thanks