Enumerations are pretty useful. But the one recurring problem I have had
with using them is the inevitably, the list of options being enumerated
grows. Then the program has to be recompiled to account for the new
options.
For cases like this where the list of options can change over time, is there
an alternative to the enumeration that captures the same functionality?
Thanks,
Joe
with using them is the inevitably, the list of options being enumerated
grows. Then the program has to be recompiled to account for the new
options.
For cases like this where the list of options can change over time, is there
an alternative to the enumeration that captures the same functionality?
Thanks,
Joe
Comment