System.Reflection.GenericParameterAttributes
namespace System.Reflection
{
public enum GenericParameterAttributes
{
Contravariant = 2,
Covariant = 1,
DefaultConstructorConstraint = 16,
None = 0,
NotNullableValueTypeConstraint = 8,
ReferenceTypeConstraint = 4,
SpecialConstraintMask = 28,
VarianceMask = 3
}
}