12
为什么我不能继承静态类?
我有几个不需要任何状态的类。从组织的角度来看,我想将它们分为层次结构。 但似乎我无法声明静态类的继承。 像这样: public static class Base { } public static class Inherited : Base { } 不管用。 语言的设计者为什么要关闭这种可能性?
224
c#
inheritance
static