How can I get started making a C# RSS Reader?

前端 未结 11 1450
鱼传尺愫
鱼传尺愫 2020-11-30 18:58

I have been wanting to make a RSS reader for a while now (just for fun), but I don\'t have the slightest idea of where to start. I don\'t understand anything about RSS. Are

11条回答
  •  庸人自扰
    2020-11-30 19:15

    I've been working with RSS quite a bit and have found that ATOM feeds are typically easier to parse using the RssSyndication class. For RSS 2.0 specifications, if the feed is in fact valid, then it's just as easy to load an XDocument from the URI, and parse the data as needed.

提交回复
热议问题