I am working on a visual studio 2017 Project on C# and i tried to use the code Process Start. But when i tried it the command did not work cmd window opened but it did not write any command on the Window. What can i do ?
private void button2_Click(object sender, EventArgs e)
{
Process.Start("cmd", "command");
}