.net 反射方法调用(转)
摘要:
1. 利用.net反射调用 方法 protected void invokeTheMethod(object theObject, string strMethod, object[] objParms) { Type objType = theObject.GetType(); //--得到对象的类型 cyj 2011-3-28 MethodInfo method; //--声明一个方法 cyj 2011-3-28 try { method = objType.GetMethod(strMethod); //--根据方法名称得到方法 cyj 2011-3-28 method.Invoke(. 阅读全文
posted @ 2012-06-02 12:27 沈建宏 阅读(569) 评论(0) 推荐(0) 编辑