Delphi Typed Constants in Case Statements
- by Andreas Rejbrand
What is the most elegant (or least ugly) way of using typed constants in a case statement in Delphi?
That is, assume for this question that you need to declare a typed constant as in
const
MY_CONST: cardinal = $12345678;
...
Then the Delphi compiler will not accept
case MyExpression of
MY_CONST: { Do Something };
...
end;
but you…