Hi,I want to call third party software in .net application (C#) the code is as follows:
Process proc = new Process();
proc.EnableRaisingEvents = false;
\\name of the file
proc.StartInfo.FileName = "filename";
\\Path where the file is located
proc.StartInfo.Arguments = "filepath";
proc.Start();
but its throwing an exception Win32 system unhandled exception
Please help