Is it possible to restrict a type parameter to concrete implementations of an abstract class, if those implementations don\'t have default constructors?
For example, if
You can add the new() constraint, which will require that the class not be abstract and have a default constructor.
new()