Compiler Error CS1521
Invalid base type
A base class specification was ill formed.
The following sample generates CS1521:
// CS1521.cs
class CMyClass
{
public static void Main()
{
}
}
class CMyClass1 : CMyClass // OK
{
}
class CMyClass2 : CMyClass[] // CS1521
{
}
class CMyClass3 : CMyClass* // CS1521
{
}
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: