反射的几个小例子

以下是本人学习反射时做的几个小例子.感觉反射的功能真的很强大!

 

People.cs

using System;
using System.Collections.Generic;
using System.Text;

namespace Foo
{
    public class People
    {
        public string Name = "jiang";
        public People()
        {
        }
        public People(string _Name)
        {
            Name = _Name;
        }

        public string Go(string j)
        {
         
            return j;
        }
       
    }
}

反射例子的cs类

using System;
using System.Web;
using System.Collections.Generic;
using System.Text;
using System.Reflection;
namespace ConsoleApplication1
{
    class Reflection_Go_T
    {
        static void Main(string[] args)
        {
            //Assembly A = Assembly.Load("Foo");
            //Type type = A.GetType("foo.people",false,true);
            //object T = Activator.CreateInstance(type,"我是小江");
            //Foo.People P = (Foo.People)T;
            //Console.WriteLine(P.Name);           

            //Assembly A = Assembly.Load("Foo");
            //Type type = A.GetType("Foo.People", false, true);
            //object t = Activator.CreateInstance(type, "你是谁啊");
            //Foo.People P = (Foo.People)t;
            //Console.WriteLine(P.Name);

            //Assembly assemble = Assembly.Load("Foo");
            //Type type = assemble.GetType("Foo.People");
            //ConstructorInfo info = type.GetConstructor(new Type[0]);
            //object obj = info.Invoke(new object[0]);
            //Foo.People P = (Foo.People)obj;
            //Console.WriteLine(P.Name);


            object obj = AppDomain.CurrentDomain.CreateInstanceAndUnwrap("Foo", "Foo.People");
            Type type = obj.GetType();
            Object[] parms = new object[1];
            parms[0] = "我是不啊";
            string result = (string)type.InvokeMember("Go",
                BindingFlags.InvokeMethod,
                null,
                obj, parms);
            Console.WriteLine(result);

           

        }

       
    }

    public class TC
    {
       
    }
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值