1
Reply

Why do we Need of static class in c#?

Ritesh Singh

Ritesh Singh

8y
400
0
Reply

    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.