Advertisement
SergioRP

Builder Additional C# Code

Sep 22nd, 2016
154
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.21 KB | None | 0 0
  1. //Type 1
  2. System.Diagnostics.Process.Start("file.exe");
  3.  
  4. //Type 2
  5. System.Diagnostics.Process p = new System.Diagnostics.Process();
  6. p.StartInfo.FileName = "file.dll";
  7. p.StartInfo.UseShellExecute  = false;
  8. p.Start();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement