Network C# Tutorial

using System;
using System.Net;
using System.Text;
using System.IO;
class MainClass
{
  [STAThread]
  static void Main(string[] args)
  {
    WebClient MyClient = new WebClient();
    Stream MyStream = MyClient.OpenRead("http://www.rntsoft.com");
    StreamReader MyReader = new StreamReader(MyStream);
    Console.WriteLine(MyReader.ReadLine());
    MyStream.Close();
  }
}