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

Popular posts from this blog

jquery - Invalid Assignment Left-Hand Side -

java - Play! framework 2.0: How to display multiple image? -

gmail - Is there any documentation for read-only access to the Google Contacts API? -