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

反射的使用

时间:2014-09-18 16:20:54      阅读:111      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   io   使用   ar   div   sp   cti   

namespace 反射
{
    class Program
    {
        static void Main(string[] args)
        {
            Assembly ass= Assembly.Load(@"反射");//找到程序集

            var type = ass.GetType("反射.Reflections");//找到类

            var method = type.GetMethod("OutPut");//找到类下面的方法

            object instance = Activator.CreateInstance(type);//创建类的实例

            method.Invoke(instance, new object[] { "执行了" });//调用方法

            Console.ReadKey();
        }
    }
    public class Reflections
    {
        public void OutPut(string str)
        {
            Console.WriteLine("反射"+str);
        }
    }
}

 

var method = type.GetMethod("OutPut");改成var method = type.GetMethod("OutPut", BindingFlags.Instance | BindingFlags.NonPublic);还可以调用类里面的私有方法

反射的使用

标签:style   blog   color   io   使用   ar   div   sp   cti   

原文地址:http://www.cnblogs.com/zhuangke668/p/3979310.html

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