RSS is XML. Use the WebClient class and download the RSS using the DownloadString method. Take the resulting string, and load it into an XDocument using the static Parse method. From there, access the items in the RSS XML, and format them to your delight. WebBrowser is probably overkill.
That being said, Twitter isn't RSS... it's Twitter. It's still XML, but it's their own proprietary version of XML. If you're building a Twitter API app, be careful about not going above your API limits.
Coding Light - Illuminated Ideas and Algorithms in Software
Coding Light Wiki• LinkedIn• ForumsBrowser
That being said, Twitter isn't RSS... it's Twitter. It's still XML, but it's their own proprietary version of XML. If you're building a Twitter API app, be careful about not going above your API limits.
Coding Light - Illuminated Ideas and Algorithms in Software
Coding Light Wiki• LinkedIn• ForumsBrowser