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)
参数类型描述
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)
参数类型描述
filenameconst String&Process 路径。
argumentsconst String&Process 参数。

ReturnValue

Object attached to newly started process.

另见