In C# what is the difference between:
public static class ClassName {}
And:
public class ClassName {}
All methods/properties in a static class must be static, whereas a 'normal' class can contain a mix of instance and static methods.