apostolisadam
Programmer
In Delphi, does anyone know of a way to extract a string version of a constant’s name?
const
myConstant = 1;
...
MyTextValue := SomConversionToText( myConstant );
showMessage( ‘The name of the constant is: ‘ + MyTextValue );
Is it even possible?
const
myConstant = 1;
...
MyTextValue := SomConversionToText( myConstant );
showMessage( ‘The name of the constant is: ‘ + MyTextValue );
Is it even possible?