Кто сможет уроки подкинуть, как написать Автообновлятор свой? чтобы проверять есть ли новые версии если есть скачивать их. на c#
using System.Net; using System.IO; const string curr_version = "v1.0"; string goodVersion = new WebClient().DownloadString("host.host/version.txt"); if(goodVersion != curr_version){ new WebClient().DownloadFile("host.host/newfile.exe", "updated"); File.Delete("old_file.exe"); } else{ MessageBox.Show("Новых версий нет!"); } Код using System.Net; using System.IO; const string curr_version = "v1.0"; string goodVersion = new WebClient().DownloadString("host.host/version.txt"); if(goodVersion != curr_version){ new WebClient().DownloadFile("host.host/newfile.exe", "updated"); File.Delete("old_file.exe"); } else{ MessageBox.Show("Новых версий нет!"); } Самое простое, что смог придумать за минуту.