讓我們看看下面的XML作爲獲取XML節點值c#
<?xml version="1.0" encoding="UTF-8" ?>
<response success="true">
<struct>value</struct>
</response>
在分析我收到以下錯誤作爲
Root element is missing.
,我所用的是代碼
foreach (XElement carselement in xdoc.Descendants("response"))
{
String value= carselement.Element("struct").Value;
}
等待您的解決方案
如何'xdoc'加載,這是什麼*真的*包含?我會想象它不代表那個XML。 – user2246674
@ user2246674雅是多數民衆贊成在我面臨的問題,我可以做一些其他的方式 – GowthamanSS
@GowthamanSS你的代碼工作沒有問題。 –