Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ Start() [2/7]

static ? Process System.Diagnostics.Process.Start ( ProcessStartInfo startInfo)
inlinestatic

Definition at line 1258 of file Process.cs.

1259 {
1260 Process process = new Process();
1261 if (startInfo == null)
1262 {
1263 throw new ArgumentNullException("startInfo");
1264 }
1266 if (!process.Start())
1267 {
1268 return null;
1269 }
1270 return process;
1271 }

References System.Diagnostics.Process.Process(), and System.Runtime.Serialization.Dictionary.