Using static properties as class wide data
This is one of those things that is so obvious I wonder why it never occured to me before! Â If you declare a member as static the compiler only creates one member instance across all class instances. class ClassWideStatic {…Continue Reading →