Skip to content

Instantly share code, notes, and snippets.

@Acrosicious
Created February 15, 2018 15:11
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Acrosicious/57e3ea216fc52da2e18aff61a50b3cba to your computer and use it in GitHub Desktop.
Save Acrosicious/57e3ea216fc52da2e18aff61a50b3cba to your computer and use it in GitHub Desktop.
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ProgramStarter
{
class Program
{
static void Main(string[] args)
{
foreach(var arg in args)
{
System.Diagnostics.Process.Start(arg);
}
}
}
}
@BrotherOdin
Copy link

This is genius. So simple, but it worked me.

@BrotherOdin
Copy link

One suggestion, use "System Enhanced" in the dropdown and it made the text look normal in terms of size.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment