How to read stackoverflow rss feed using linq to xml
问题 I am trying read rss feed of stack overflow using Linq to xml. I am unable to get the entry nodes, as it is returning empty list. This I've tried so far, can any one point out what i am doing wrong here? Here I am binding to the grid view: private void StackoverflowFeedList() { grdFeedView.DataSource = StackoverflowUtils.GetStackOverflowFeeds(); grdFeedView.DataBind(); } This is the method which will get all feeds: public static IEnumerable<StackOverflowFeedItems> GetStackOverflowFeeds () {