Tag: feeds

阅读Stack Overflow RSS feed

我正在尝试从Feed中获取未回答的问题列表,但我无法阅读它。 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 element XmlNodeList feed = doc.GetElementsByTagName(“feed”); // Loop through each item under feed and add to entries IEnumerator ienum = feed.GetEnumerator(); […]