本文介绍了如何将参数传递到Activator.CreateInstance< T>()的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我要创建我的,我有一个泛型方法指定类型的实例。这种类型有很多重载构造。我希望能够参数传递给构造函数,但
I want to create an instance of a type that I specify in a generic method that I have. This type has a number of overloaded constructors. I'd like to be able to pass arguments to the constructors, but
Activator.CreateInstance<T>()
没有看到有这个作为一个选项。
doesn't see to have this as an option.
有另一种方式做到这一点?
Is there another way to do it?
推荐答案
(T)Activator.CreateInstance(typeof(T), param1, param2);
这篇关于如何将参数传递到Activator.CreateInstance&LT; T&GT;()的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!