Expand Minimize
0 out of 1 rated this helpful - Rate this topic

Compiler Error CS0702

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.

The following sample generates CS0702:

// CS0702.cs
class C<T> where T : System.Array  // CS0702
{
}
Did you find this helpful?
(1500 characters remaining)
© 2013 Microsoft. All rights reserved.