Search code examples
c#genericscreateinstance

How to Pass Parameters to 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?


Solution

  • Yes.

    (T)Activator.CreateInstance(typeof(T), param1, param2);