c# - Desktop Application that uses RSS feeds -
i need develop desktop application shows contents of rss feeds taken other websites. have never worked withe rss feeds before. how can done? can use c# develop desktop application?
an rss feed xml. google rss specification. in c# like:
xmlreader rdr; stream strm; try { webclient client = new webclient(); strm = client.openread(uri); rdr = xmlreader.create(strm); while (!rdr.eof) { // } }
Comments
Post a Comment