Session

反射根据字符串实例化对象

电脑版发表于:2021/5/23 20:35

前言

根据字符串实例化对象

对象名与字符串名需要相同

我希望有个如你一般的人

//根据字符串实例化对象(需要存在这个这个类)
object obj =Activator.CreateInstance(Type.GetType("字符串的类名"));

//等价于
字符串的类名 obj = new 字符串的类名();

//根据反射实例化的对象调用对象里的方法,传递参数(对象,new object[] { 参数1, 参数2})
obj.GetType().GetMethod("Base").Invoke(obj, new object[] { xElement, Response });


关于TNBLOG
TNBLOG,技术分享。技术交流:群号677373950
ICP备案 :渝ICP备18016597号-1
App store Android
精彩评论
{{item.replyName}}
{{item.content}}
{{item.time}}
{{subpj.replyName}}
@{{subpj.beReplyName}}{{subpj.content}}
{{subpj.time}}
猜你喜欢