.net反射

Assembly _dll = Assembly.LoadFrom(Application.StartupPath.Trim() + "\\Student.dll");
System.Type t = _dll.GetType("Student.studentA");//命名空间.类名
object o = System.Activator.CreateInstance(t);//创建实例
System.Reflection.MethodInfo mi = t.GetMethod("Get_name");//获得方法
FieldInfo [] Fs=t.GetFields();
MessageBox.Show(mi.Invoke(o, new object[] {">>" }).ToString());//调用方法

posted @ 2016-04-09 19:30  No.net  阅读(81)  评论(0编辑  收藏  举报