Compiler Error CS0699

'generic' does not define type parameter 'identifier'

A type parameter was used in a generic definition that was not found in the declaration list of the type parameters for that generic. This can happen if the name used for the type parameter was inconsistent.

The following sample generates CS0699:

// CS0699.cs
class C<T> where U : I   // CS0699 – U is not a valid type parameter
{
}