利用反射在控制台中调用同一解决方案类库中的方法

类库中的方法

using System;


namespace WebTest
{
    public class ReflectTest
    {
        public ReflectTest()
        { }
        public string WriteString(string s)
        {
            return "欢迎您," + s;
        }

        public static string WriteName(string s)
        {
            return "欢迎您光临," + s;
        }
        public string WriteNoPara()
        {
            return "您使用的是无参数方法";
        }
        public string saygood()
        {
            return "good";
        }
    }
}


 

控制台中的反射调用

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

namespace ConsoleApplication2
{
    class Program
    {
        static void Main(string[] args)
        {
            System.Reflection.Assembly ass;
            Type type;
            object obj;
            try
            {
                ass = System.Reflection.Assembly.LoadFile(@"D:\Program\ConsoleApplication2\WebTest\bin\Debug\WebTest.dll");//将类库引入该页面
                type = ass.GetType("WebTest.ReflectTest");//必须使用名称空间+类名称:比如这里的WebTest就是名称空间,ReflectTest就是类名称

                System.Reflection.MethodInfo method = type.GetMethod("WriteString");//方法名称
                obj = ass.CreateInstance("WebTest.ReflectTest");//必须使用名称空间+类名称
                string s = (string)method.Invoke(obj, new string[] { "zhoudanyan" });//实例方法的调用
                Console.Write(s + "<br>");
                Console.ReadLine();

                method = type.GetMethod("WriteName");//方法的名称
                s = (string)method.Invoke(obj, new string[] { "zhoudanyan"});
                Console.WriteLine(s + "<br>");
                Console.ReadLine();

                method = type.GetMethod("WriteNoPara");
                s = (string)method.Invoke(obj, null);
                Console.WriteLine(s+"<br>");
                Console.ReadLine();

                method = type.GetMethod("saygood");
                s = (string)method.Invoke(obj, null);
                Console.WriteLine(s+"!");
                Console.ReadLine();
            }
            catch (Exception ex)
            {
                Console.Write(ex + "<br>");
                Console.ReadLine();
            }
            finally
            {
                ass = null;
                type = null;
                obj = null;
            }
        }
    }
}


 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值