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.

参照