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

◆ ExecuteAssembly() [3/4]

int System.AppDomain.ExecuteAssembly ( string assemblyFile,
string??[] args )
inline

Definition at line 229 of file AppDomain.cs.

230 {
231 if (assemblyFile == null)
232 {
233 throw new ArgumentNullException("assemblyFile");
234 }
235 string fullPath = Path.GetFullPath(assemblyFile);
236 Assembly assembly = Assembly.LoadFile(fullPath);
237 return ExecuteAssembly(assembly, args);
238 }
int ExecuteAssembly(string assemblyFile)
Definition AppDomain.cs:223
static string GetFullPath(string path)
Definition Path.cs:881
static Assembly LoadFile(string path)
Definition Assembly.cs:518

References System.AppDomain.ExecuteAssembly(), System.IO.Path.GetFullPath(), and System.Reflection.Assembly.LoadFile().