[To be supplied.]
Default constructor. At least the FileName property must be set before starting the process.
[Visual Basic] Overloads Public Sub New()
[C#] public ProcessStartInfo();
[C++] public: ProcessStartInfo();
[JScript] public function ProcessStartInfo();
Specifies the name of the application or document that is to be started.
[Visual Basic] Overloads Public Sub New(String)
[C#] public ProcessStartInfo(String);
[C++] public: ProcessStartInfo(String*);
[JScript] public function ProcessStartInfo(String);
Specifies the name of the application that is to be started, as well as a set of command line arguments to pass to the application.
[Visual Basic] Overloads Public Sub New(String, String)
[C#] public ProcessStartInfo(String, String);
[C++] public: ProcessStartInfo(String*, String*);
[JScript] public function ProcessStartInfo(String, String);
ProcessStartInfo Class | ProcessStartInfo Members | System.Diagnostics Namespace