Why do we Need of static class in c#?
Ritesh Singh
Making a class static just prevents people from trying to make an instance of it. If all your class has are static members it is a good practice to make the class itself static.