标签: c#
我试图做一个webbrowser,他得到了文本。 但不是让文本下载到我的计算机文件。 如何在不使用它的情况下获得此文本? 感谢
答案 0 :(得分:5)
您可以使用WebClient:
WebClient
string output = string.Empty; using (WebClient wc = new WebClient()) { output = wc.DownloadString("http://stackoverflow.com"); }