This is my code.
System.Diagnostics.ProcessStartInfo proc = new System.Diagnostics.ProcessStartInfo(); proc.FileName = @"cmd.exe"; proc.Arguments = "/C "+ "ipconfig" ; System.Diagnostics.Process.Start(proc);
when I run this code, Cmd starts and exits so fast. How to pause?
THANKS A LOT:)
source share