Static class | cannot be instantiated using the “new” keyword
|
Static items | only access other static items. Share resources between multiple users
|
Static constructor | in non-static class: runs only once when class instantiated first time
|
In static class: runs only once when any of its static members accessed for the first time | |
Static members | are allocated in high frequency heap area of the memory |