Konsole in einer Windows Forms Anwendung?

1 Antwort

Ja, das ist möglich.

Starte innerhalb des Klick-Handler einfach einen entsprechenden Prozess:

var process = new ProcessStartInfo(@"C:\Windows\System32\cmd.exe");
Process.Start(process);