Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我认为这很简单,但我真的只有 1 个节点需要添加到节点列表中。
所以我有XmlNode xmlNode。该节点包含我需要的所有信息。我需要将此添加到XmlNodeList xmlnodeList. 我知道这很愚蠢,因为它不是一个列表,但是下面的代码包含处理节点列表的所有部分,并且放松会很痛苦。
XmlNode xmlNode
XmlNodeList xmlnodeList
通常我也会使用XmlNodeList xmlnodeList = xmlNode.FirstChild.SelectNodes,但是我需要整个节点,而不仅仅是子节点。
XmlNodeList xmlnodeList = xmlNode.FirstChild.SelectNodes
谢谢!
怎么样:
XmlNodeList xmlNodeList = xmlNode.SelectNodes(".");