Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
'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
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.