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