/Platters/classes/autoupdater.cs
http://skimpt.googlecode.com/ · C# · 25 lines · 18 code · 6 blank · 1 comment · 0 complexity · 615bf4be9e293e22230cfa7b6c0aae8e MD5 · raw file
- using System;
- using System.Collections.Generic;
- using System.Text;
- using System.Net;
-
-
- class autoupdater
- {
-
- public static int GetLatestVersion()
- {
- //let us screenscrape the Google Site.
- WebClient wc = new WebClient ();
- byte [] pageData = wc.DownloadData ("http://code.google.com/p/skimpt");
- string pageHtml = System.Text.Encoding.ASCII.GetString(pageData);
-
- string ver;
- ver = pageHtml.Substring (pageHtml.IndexOf ("!!ver:"));
- ver = ver.Substring (6);
- ver = ver.Remove(ver.IndexOf("!!"));
-
- return Convert.ToInt32(ver);
- }
- }