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

C#运用反射调用其他程序集中的代码

时间:2014-05-15 17:54:29      阅读:248      评论:0      收藏:0      [点我收藏+]

标签:style   blog   class   code   java   c   

加载程序集

bubuko.com,布布扣
                AssMedicalAdvice = Assembly.LoadFrom(Path.Combine(Environment.CurrentDirectory, "Inscription.MedicalAdvice.Client.dll"));
bubuko.com,布布扣

 

1.调用静态函数,静态函数不需要实例化类,所以methodInfo.Invoke第一个参数为null

bubuko.com,布布扣
             type = AssClinicalPaths.GetType("Inscription.ClinicalPaths.Client.CommonCtl.RasonV2.CP_RASON_GridFormV2");
                 methodInfo = type.GetMethod("Test");
                 methodInfo.Invoke(null, new string[] { });
bubuko.com,布布扣

 

2.获取静态属性

bubuko.com,布布扣
                type = AssClinicalLib.GetType("Inscription.ClinicalPaths.Lib.LibManager");
                 string strDbType = type.GetProperty("strDBType").GetValue(null, null).ToString();
                 string strDbConn = type.GetProperty("strDBConn").GetValue(null, null).ToString();
bubuko.com,布布扣

3.获取动态属性

bubuko.com,布布扣
1                     type = AssMedicalLib.GetType("Inscription.MedicalAdvice.Object.BaseSreverManager");
2 
3                     object objBaseServerManager = type.GetProperty("sBaseSreverManager").GetValue(null, null);
4                     strDbType = type.GetProperty("DBType").GetValue(objBaseServerManager, null).ToString();
5                     strDbConn = type.GetProperty("DBConn").GetValue(objBaseServerManager, null).ToString();
bubuko.com,布布扣

 

4.调用非静态函数,需要获取属性,实例化PathManager类。

或者使用Activator.CreateInstance(type)类实例化类

bubuko.com,布布扣
                    type = AssClinicalPaths.GetType("Inscription.ClinicalPaths.Lib.PathManager");
                    Object objPathManager = type.GetProperty("pathManager").GetValue(null, null);
                    methodInfo = type.GetMethod("in_RunTimeObject");
                    methodInfo.Invoke(objPathManager, new string[] { });
bubuko.com,布布扣

 

 

C#运用反射调用其他程序集中的代码,布布扣,bubuko.com

C#运用反射调用其他程序集中的代码

标签:style   blog   class   code   java   c   

原文地址:http://www.cnblogs.com/linuxjava01/p/3729831.html

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