Using Verbatim Strings for C# Variable Names

C# lets you use reserved keywords as variable names if you put the @ sign before them. For example, you can write var @class = new Class(); to make a variable named 'class'.
July 15, 2025
37
488