I am trying to get my program to read async so it doesn't just freeze up while it fetches the data. I have:
Code:
SR = New StreamReader(WC.OpenReadAsync(New Uri(url)))
Dim html = SR.ReadToEnd.ToString
It keeps throwing the error "does not produce an expression". I remember trying this in the past, only to have the same error. I tried giving the online syntax guide a look, but don't find a mistake on my part (although I know i'm not doing something right).