Click or drag to resize

YStaticMethodsProcessStart(String, String, Boolean, Boolean) Method

Run the given command with its arguments.

Namespace: Upsilon.Common.Library
Assembly: Upsilon.Common.Library (in Upsilon.Common.Library.dll) Version: 2.2.2+14985a67b419f90e14e6b1bde61d18cf6cf12b27
Syntax
C#
public static Process ProcessStart(
	string command,
	string arguments,
	bool useShellExecute = true,
	bool createNoWindow = false
)

Parameters

command  String
The command to execute.
arguments  String
The argument of the given command.
useShellExecute  Boolean  (Optional)
Use shell execute command. By default it is true. Will be override to false if createNoWindow is set to true.
createNoWindow  Boolean  (Optional)
Create no window. By default it is false.

Return Value

Process
The process started.
See Also