Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要开发一个桌面应用程序来显示从其他网站获取的 RSS 提要的内容。我以前从未使用过 RSS 提要。如何才能做到这一点?我可以使用 C# 开发桌面应用程序吗?
RSS 提要只是 XML。谷歌 RSS 规范。在 C# 中,您可以执行以下操作:
XmlReader rdr; Stream strm; try { WebClient client = new WebClient(); strm = client.OpenRead(uri); rdr = XmlReader.Create(strm); while (!rdr.EOF) { // Do something } }