2023-07-01 11:58:00 -04:00
|
|
|
Imports System.Net
|
|
|
|
|
|
2025-02-27 18:35:13 -05:00
|
|
|
Module RCHttp
|
|
|
|
|
|
|
|
|
|
Public Sub Main(args As String())
|
|
|
|
|
Dim client As New WebClient()
|
|
|
|
|
Dim content As String = client.DownloadString("http://www.google.com")
|
|
|
|
|
Console.WriteLine(content)
|
|
|
|
|
End Sub
|
|
|
|
|
|
|
|
|
|
End Module
|