Skip to content

Instantly share code, notes, and snippets.

@jdferrell3
Last active October 4, 2017 20:29
Show Gist options
  • Save jdferrell3/d12265900ab6084a0557ddc60895630f to your computer and use it in GitHub Desktop.
Save jdferrell3/d12265900ab6084a0557ddc60895630f to your computer and use it in GitHub Desktop.
Simple C# code to execute another application
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace passthru
{
class Program
{
static void Main(string[] args)
{
System.Diagnostics.Process.Start(args[0]);
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment