How to make an automatic updater in Visual Studio! | C# | 2020 | With and without Setup!

In this video I’m going to show you how to make an easy automatic updater for your program. It’s connected to the web. The code I used: Main program: using ; using ; InitializeComponent(); WebClient webClient = new WebClient(); try { if (!(“yourpastebinlink“).Contains(““)) { if ((“Looks like there is an update! Do you want to download it?“, “Demo“, , ) == ) using (var client = new WebClient()) { (““); (); } } } catch { } ---
Back to Top