I\'m declaring a family of static classes that deals with a communications protocol. I want to declare a parent class that process common messages like ACKs, inline errors..
A workaround would be to declare the static variable in the implementation of the parent class AND also declare a property in the parent class. Then in the accessor methods access the static variable. This way you can access static variables like properties with dot syntax. All the subclasses access the same shared static variable.