NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

Compiler Error CS1521

Invalid base type

A base class specification was ill formed.

The following sample generates CS1521:

class CMyClass {
   public static void Main() {
   }
}
class CMyClass1 : CMyClass {    // OK
}
class CMyClass2 : CMyClass[] {  // CS1521
}
class CMyClass3 : CMyClass* {   // CS1521
}

See Also

base