How can I instantiate the type T inside my InstantiateType method below?
InstantiateType
I\'m getting the error: \'T\' is a \'type parameter\' but is u
you want new T(), but you'll also need to add , new() to the where spec for the factory method
, new()
where