How do you avoid a reserved word in Delphi?

I need an Escape reserved word in order to use it as an identifier in Delphi. I thought this was accomplished using the ampersand "&", but this does not seem to work correctly. Any other suggestions?

+7
syntax escaping delphi reserved-words
source share
1 answer

I found a doc page ( Extended Syntax search) on it, and it should be an ampersand.

I found out the problem. Ampersand works to compile and analyze errors, but not to complete the code. Good to know. I had to add the suffix _ to get the code to complete, and then change its afterword. I have to check the QC for the error report.

+8
source share

All Articles