0
如果我有一個System.Xml.XmlDocument
,並且我返回它的值,我會得到整個文檔的文字字符串值嗎?使用ToString或Value來獲取xml文檔的字符串值
或者我需要使用ToString嗎?
如果我有一個System.Xml.XmlDocument
,並且我返回它的值,我會得到整個文檔的文字字符串值嗎?使用ToString或Value來獲取xml文檔的字符串值
或者我需要使用ToString嗎?
如果你有 -
XmlDocument doc;
包含有效的XML,
,你可以使用它獲取XML字符串 -
XmlNode root = doc.FirstChild;
Console.WriteLine(root.FirstChild.OuterXml);
究竟是什麼進出口尋找,謝謝 – DarkW1nter 2012-01-09 11:17:55