Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Constraint cannot be special class 'identifier'
The following types may not be used as constraints: System.Object,System.Array, System.Delegate, System.Enum, or System.ValueType.
Example
The following sample generates CS0702:
// CS0702.cs
class C<T> where T : System.Array // CS0702
{
}