(Choose 1 answer)
With the constraint "where T: new()", what it means?
A. The type argument must be a non-nullable value type. The new constraint implies the class constraint and struct constraint
B. None of the others
C. The type argument must be a reference type, either nullable or non-nullable
D. The type argument must have a public parameterless constructor. When used together with other constraints, the new() constraint must be specified last
R
31/50-CAP
Q: 33