当前位置: 代码迷 >> 综合 >> 工厂模式生成构造函数带参数的对象时的解决办法(Assembly.Load(path).CreateInstance)
  详细解决方案

工厂模式生成构造函数带参数的对象时的解决办法(Assembly.Load(path).CreateInstance)

热度:98   发布时间:2023-12-09 23:29:13.0

如下,通过args来传参

object[] args=new object[3];
args[0]="";args[2]="";args[1]="";return (INETweibo.INETweiboGrab)Assembly.Load(path).CreateInstance(className, true, System.Reflection.BindingFlags.Default, null, args, null, null);


  相关解决方案