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

◆ Start() [4/7]

static Process System.Diagnostics.Process.Start ( string fileName,
IEnumerable< string > arguments )
inlinestatic

Definition at line 1238 of file Process.cs.

1239 {
1240 if (fileName == null)
1241 {
1242 throw new ArgumentNullException("fileName");
1243 }
1244 if (arguments == null)
1245 {
1246 throw new ArgumentNullException("arguments");
1247 }
1248 ProcessStartInfo processStartInfo = new ProcessStartInfo(fileName);
1249 foreach (string argument in arguments)
1250 {
1251 processStartInfo.ArgumentList.Add(argument);
1252 }
1253 return Start(processStartInfo);
1254 }
void Add(TKey key, TValue value)

References System.Collections.Generic.Dictionary< TKey, TValue >.Add(), and System.Diagnostics.Process.Start().