ClrPlus.Platform.Process.ProcessStartInfo.ProcessStartInfo C# (CSharp) Метод

ProcessStartInfo() публичный Метод

Initializes a new instance of the T:System.Diagnostics.ProcessStartInfo class, specifies an application file name with which to start the process, and specifies a set of command-line arguments to pass to the application.
public ProcessStartInfo ( string fileName, string arguments ) : System
fileName string An application with which to start a process. ///
arguments string Command-line arguments to pass to the application when the process starts. ///
Результат System
        public ProcessStartInfo(string fileName, string arguments)
            : this()
        {
            FileName = fileName;
            Arguments = arguments;
        }

Same methods

ProcessStartInfo::ProcessStartInfo ( ) : System
ProcessStartInfo::ProcessStartInfo ( System psi ) : System
ProcessStartInfo::ProcessStartInfo ( string fileName ) : System