如何獲取XmlNode中的文本?見下:如何在XmlNode中獲取文本
XmlNodeList nodes = rootNode.SelectNodes("descendant::*");
for (int i = 0; i < nodes.Count; i++)
{
XmlNode node = nodes.Item(i);
//TODO: Display only the text of only this node,
// not a concatenation of the text in all child nodes provided by InnerText
}
而我最終想要做的是prepend「HELP:」到每個節點的文本。
'ChildNodes'是一個'XmlNodeList',它實現了'IEnumerable'的非泛型版本。因此,您需要在上面的循環中明確說明「child」的類型,即「foreach(node.ChildNodes中的XmlNode子節點)」。 – LeopardSkinPillBoxHat 2015-07-13 03:30:17
@LeopardSkinPillBoxHat:已修復,謝謝。 – 2015-07-13 05:52:17