If I want to use a switch statement with the 'String' type variable, I get this error message:
C:\MyApps\***\convert.cpp(33) : error C2450: switch expression of type 'String' is illegal
No user-defined-conversion operator available that can perform this conversion, or the operator cannot be called
Is there an equivalent in U++ for the Switch operator that can use a 'String' type value?
Justin
No, however, this is C++ language feature (only integral fundamental type can be used in switch expression).