I know I can open Windows Calculator with the following code :
System.Diagnostics.Process.Start(\"calc\");
But I wanna open it in my C# Win
using System.Diagnostics; try { Process p = null; if (p == null) { p = new Process(); p.StartInfo.FileName = "Calc.exe"; p.Start(); } else { p.Close(); p.Dispose(); } } catch (Exception e) { MessageBox.Show("Excepton" + e.Message); } }