我有以下代码片段,我试图将特定网站的html输出到控制台。
using System;
using System.Net;
namespace googleHTML
{
class Program
{
static void Main(string[] args)
{
WebClient client = new WebClient();
string htmlCode = client.DownloadString("http://www.google.com");
Console.ReadLine();
}
}
}
当我在控制台中运行时,没有任何反应?
感谢。
答案 0 :(得分:1)
你没有对html做任何事情,你只是存储它。
尝试
Console.WriteLine(htmlCode);
后
string htmlCode = client.DownloadString..
答案 1 :(得分:1)
Console.Write(htmlCode);
Console.ReadLine
从控制台流中读取一行输入。