To get data from a URL in C#, you can use the HttpClient
class in the .NET Framework.
Here's an example code snippet:
main.cs601 chars23 lines
In this example, we first create a URL string (url
). Then we create an instance of HttpClient
, and use the GetAsync
method to send an HTTP GET request to the URL.
We then retrieve the response content using the ReadAsStringAsync
method of the HttpContent
object. Finally, we print the data to the console.
Note that the await
keyword is used to await the asynchronous operations.
gistlibby LogSnag