System::Diagnostics::Process::Start 方法

Process::Start() method

使用预定义参数启动进程。

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

另见

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

使用指定路径和参数启动进程。

static SharedPtr<Process> System::Diagnostics::Process::Start(const SharedPtr<ProcessStartInfo> &start_info)
ParameterType描述
start_infoconst SharedPtr<ProcessStartInfo>&关于要启动的进程的信息。

ReturnValue

Object attached to newly started process.

另见

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

使用指定路径和参数启动进程。

static SharedPtr<Process> System::Diagnostics::Process::Start(const String &filename, const String &arguments=String::Empty)
ParameterType描述
filenameconst String&Process 路径。
argumentsconst String&Process 参数。

ReturnValue

Object attached to newly started process.

另见