The "static" keyword when referring to a class has three effects:
You cannot create an instance of a static class (this even removes the default constructor)
All properties and methods in the class must be static as well.
A static class is a sealed class, meaning it cannot be inherite...