LINQ query problem

后端 未结 4 657
被撕碎了的回忆
被撕碎了的回忆 2021-01-27 01:31

Can\'t get any result in feeds. feedXML has the correct data.

XDocument feedXML = XDocument.Load(@\"http://search.twitter.com/search.atom?q=twitter\");

var feed         


        
4条回答
  •  半阙折子戏
    2021-01-27 02:06

    The issue is in feedXML.Descendants("entry"). This is returning 0 results According to the documentation you need to put in a fully qualified XName

提交回复
热议问题