Possible Duplicate:
How can a static class derive from an object?
I have a static class and I want to inherit from another static class, but the compiler forbid to do so. “Static classes must derive from object”
I want to know why and is there any workaround?
Static means shared and it is not inheritable. There is no way you can do this.