csharp-game-launcher icon indicating copy to clipboard operation
csharp-game-launcher copied to clipboard

Source code from my tutorial on YouTube about building a game launcher/auto updater with C# & WPF.

Results 2 csharp-game-launcher issues
Sort by recently updated
recently updated
newest added

Apparently, the System.Net library is really common in Trojans. Thus, publishing my launcher causes all the people to get the 'Threats found' notification and can not run it. Also, what...

question

using System; using System.ComponentModel; using System.Diagnostics; using System.IO; using System.IO.Compression; using System.Net; using System.Windows; namespace GameLauncher { enum LauncherStatus { ready, failed, downloadingGame, downloadingUpdate } /// /// Interaction logic for...