How could I use C# to download the contents of a URL, and store the text in a string, without having to save the file to the hard drive?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|||||||
|
|
See WebClient.DownloadString. Note there is also a WebClient.DownloadStringAsync method, if you need to do this without blocking the calling thread. |
||||
|
|
|
Use a WebClient
|
||||
|
|
