例如,对于以下XML
1254 City1 State
我可能想知道XElement是否包含"City"节点.
只需使用Elements的其他重载.
bool hasCity = OrderXml.Elements("City").Any();