DEV Community

Discussion on: Static classes are evil

Collapse
 
kspeakman profile image
Kasey Speakman • Edited

Ah. In C#, static is a modifier you can put when declaring a class (top-level or nested). All it does is compile-time verify that all the class members are also static. Otherwise you will get an error. It doesn't have any particular usage implications that I'm aware of.