Follow along with the video below to see how to install our site as a web app on your home screen.
Not: This feature may not be available in some browsers.
string surum = "2.4.6": //şuanki sürüm
using(WebClient wc = new WebClient()) {
wc.Headers.Add("user-agent", "other");
if (surum != wc.DownloadString("sitem.com/surumBilgisi.txt")) {
MessageBox.Show("Yeni sürüm mevcut!!");
File.WriteAllBytes("yeniSurum.zip", wc.DownloadData("sitem.com/yenisurum.zip"));
Process.Start("yeniSurum.zip");
} else {
MessageBox.Show("Zaten son sürümü kullanıyorsunuz.");
}
}