Reading the Stack Overflow RSS feed
问题 I'm trying to get a list of unanswered questions from the feed, but I am having trouble reading it. const string RECENT_QUESTIONS = "https://stackoverflow.com/feeds"; XmlTextReader reader; XmlDocument doc; // Load the feed in reader = new XmlTextReader(RECENT_QUESTIONS); //reader.MoveToContent(); // Add the feed to the document doc = new XmlDocument(); doc.Load(reader); // Get the <feed> element XmlNodeList feed = doc.GetElementsByTagName("feed"); // Loop through each item under feed and add