Método System::Diagnostics::Process::Start

Process::Start() method

Inicia el proceso con parámetros predefinidos.

bool System::Diagnostics::Process::Start()

Ver también

Process::Start(const SharedPtr<ProcessStartInfo>&) method

Inicia el proceso con la ruta y los argumentos especificados.

static SharedPtr<Process> System::Diagnostics::Process::Start(const SharedPtr<ProcessStartInfo> &start_info)
ParámetroTipoDescripción
start_infoconst SharedPtr<ProcessStartInfo>&Información del proceso a iniciar.

ReturnValue

Object attached to newly started process.

Ver también

Process::Start(const String&, const String&) method

Inicia el proceso con la ruta y los argumentos especificados.

static SharedPtr<Process> System::Diagnostics::Process::Start(const String &filename, const String &arguments=String::Empty)
ParámetroTipoDescripción
filenameconst String&Ruta de Process.
argumentsconst String&Parámetros de Process.

ReturnValue

Object attached to newly started process.

Ver también