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

前端 未结 11 1449
鱼传尺愫
鱼传尺愫 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:21

    See

    http://msdn.microsoft.com/en-us/library/bb943474.aspx

    http://msdn.microsoft.com/en-us/library/system.servicemodel.syndication.syndicationfeed.aspx

    http://msdn.microsoft.com/en-us/library/bb943480.aspx

    Basically there is a lot of stuff in the .Net 3.5 framework that does the grunt-work of parsing and representing feeds; it's not hard to write a 30-line app that takes in a feed URL and downloads the feed and prints the title and author of all the items, for example. (Works for RSS 2.0 (not others!) or Atom.)

提交回复
热议问题