我是 C# 新手,我正在尝试从 URL 读取 xml。xml 看起来像这样
<posts>
<post>
<title>title1</title>
<des>des1</des>
</post>
<post>
<title>title2</title>
<des>des2</des>
</post>
.....
</posts>
这就是我用来解析它的。
String uri = "url";
XDocument books = XDocument.Load(uri);
当调试命中XDocument
行时,它会引发异常并跳过它。
我怎样才能避免这种情况?