I am trying to inherit a non-static class by a static class.
public class foo
{ }
public static class bar : foo
{ }
And I get:
Static class cannot derive from type. Static classes must derive from object.
How can I derive it from object?
The code is in C#.