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
{
}
Collaborate with us on GitHub
The source for this content can be found on GitHub, where you can also create and review issues and pull requests. For more information, see our contributor guide.
.NET feedback
.NET is an open source project. Select a link to provide feedback: