In C# what is the difference between:
public static class ClassName {}
And:
public class ClassName {}
You can't instantiate (create objects of) a static class. And it can only contain static members.
Example: System.Math