Compiler Error CS0709

'derived class': cannot derive from static class 'base class'

A static class cannot be instantiated or derived from. That is, a static class cannot be a base class of any other class.

Example

The following sample generates CS0709.

// CS0709.cs  
// compile with: /target:library  
public static class Base {}  
public class Derived : Base {}   // CS0709