Advertisement
TwoOfDiamonds

Site Change

Jul 24th, 2013
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.47 KB | None | 0 0
  1. using System;
  2. using System.Net;
  3. using System.Windows.Forms;
  4.  
  5. class Drept
  6. {
  7.     public static void Main()
  8.     {
  9.         string link, diff;
  10.  
  11.         Console.Write("Link: ");
  12.         link = Console.ReadLine();
  13.  
  14.         string html = new WebClient().DownloadString(link);
  15.  
  16.         Console.Write(html);
  17.  
  18.         do
  19.         {
  20.             diff = new WebClient().DownloadString(link);
  21.         } while (diff == html);
  22.  
  23.         MessageBox.Show("S-au afisat!");
  24.     }
  25. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement