Last active
October 4, 2017 20:29
-
-
Save jdferrell3/d12265900ab6084a0557ddc60895630f to your computer and use it in GitHub Desktop.
Simple C# code to execute another application
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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