让我们将以下 xml 视为
<?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;
}
等待您的解决方案