Typically languages have keywords that you are unable to use directly with the exact same spelling and case for naming things (variables,functions,classes …) in your program. Yet sometimes a keyword is the only natural choice for naming something. What is your system for avoiding/getting around this clash in your chosen technology?
Typically languages have keywords that you are unable to use directly with the exact
Share
I just avoid the name, usually. Either find a different name or change it slightly – e.g.
clazzinstead ofclassin C# or Java. In C# you can use the @ prefix, but it’s horrible: