I'm using the answer of this question to solve my problem c# open file with default application and parameters But, I need, not only to open the file but inside the default app be able to access the option import... in this moment I can open the file.
Could you indicate me how can I put the specification of import command into the myProcess.StartInfo.Arguments code
Process myProcess = new Process();
myProcess.StartInfo.FileName = @"C:\\Program Files\\Autometrix\\PatternSmith 10.0\\PatternSmith.exe";
myProcess.StartInfo.Arguments = @"C:\Users\XPLOY-GTS\source\repos\NewRepo\CalculateCoordenates\WpfApp1\bin\Debug\net6.0-windows\\Wing0.dxf";
myProcess.Start();