Hi guys
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?
Thanks
Dave