I\'ve run into an interesting problem and am looking for some suggestions on how best to handle this...
I have an abstract class that contains a static method that accep
Static members do not have polymorphism, so they can't be abstract. :(
If that's what you need, consider making a Singleton object, and reading the property off that object.