RSS Feeds in a vb.net desktop application…
Ok so i thought it would be a good idea to write an RSS feed reading into the project that im currently working on.
Based on this i found the following code:
Public Shared Function ProcessRSS(ByVal rssURL As String, ByVal feed As String) As String
Dim request As WebRequest = WebRequest.Create(rssURL)
Dim response As WebResponse = request.GetResponse()
Dim sb As [...]