How do you escape a reserved word in Delphi?
问题 I need to Escape a reserved word to use it as an identifier in Delphi. I thought that was accomplished by using the ampersand "&", but that doesn't seem to be working right. Any other suggestions? 回答1: I found the doc page (search for Extended Syntax ) on it, and it should be ampersand. Figured out the problem. The ampersand works for compiling and error insight, but not code completion. Good to know. I had to add an _ suffix to get code completion to work, then change it back afterwords. I