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 argume
Yes.
(T)Activator.CreateInstance(typeof(T), param1, param2);