I am trying to open jar file from C# code. Here is my code,
myProcess.StartInfo.UseShellExecute = false;
myProcess.StartInfo.FileName = "java";
myProcess.StartInfo.Arguments = "-jar D:\\DATA\\PROJECT\\LicensingManagement\\Assignment\\JavaLogin.jar";
myProcess.Start();
it is working fine, but jar file opens with command prompt, Is there any way to open jar file without command prompt? thanks in advance.