In C# what is the difference between:
public static class ClassName {}
And:
public class ClassName {}
A static class also can not be inherited from, whereas a non-static class with static members can be inherited from.