I have a 3rd party EXE. I just need to run this from my C# application.
My prime target is to copyright that 3rd party executable from my C# file..
Is
right click on ur project the solution explorer then add existing item select executable file in dialog box then go to your exe path and add your exe in your project.. then if u wanna start your exe on button click event then write this code its simple easy ...
private void button_Click(object sender, EventArgs e)
{
System.Diagnostics.Process.Start("fire.EXE");
}