码迷,mamicode.com
首页 > 其他好文 > 详细

程序集加载和反射

时间:2017-07-19 22:01:38      阅读:124      评论:0      收藏:0      [点我收藏+]

标签: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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!