Skip to content

Tag Archives: .net

Know your framework

13-Oct-09

What is wrong with the following program?

using System; using System.Net; using System.IO; using System.Text; class Example { static void Main() { Console.WriteLine( getWebPage(“http://example.com”)); } static String getWebPage(String url) [...]