标签:cat ring 扩展 ati ons stat 执行 size name
一、程序集加载
1,根据程序集名称查找程序集
public class Assembly { public static Assembly Load(AssemblyName assemblyRef); public static Assembly Load(string assemblyString); //未列出不常用的Load重载 }
Assembly.Load("ConsoleApplication2");,
2,根据程序集文件路径名(包含扩展名)查找程序集
public class Assembly { public static Assembly LoadFrom(string path); //未列出不常用的LoadFrom重载 }
Assembly.LoadFrom("ConsoleApplication2.exe");
3,加载程序集时,确保程序集中的任何代码不会执行
public class Assembly { public static Assembly ReflectionOnlyLoadFrom(string assemblyFile); public static Assembly ReflectionOnlyLoad(string assemblyFile); //未列出不常用的ReflectionOnlyLoad重载 }
标签:cat ring 扩展 ati ons stat 执行 size name
原文地址:http://www.cnblogs.com/zd1994/p/7207825.html