[c#] What does the @ symbol before a variable name mean in C#?

It allows you to use a C# keyword as a variable. For example:

class MyClass
{
   public string name { get; set; }
   public string @class { get; set; }
}

Examples related to c#

How can I convert this one line of ActionScript to C#? Microsoft Advertising SDK doesn't deliverer ads How to use a global array in C#? How to correctly write async method? C# - insert values from file into two arrays Uploading into folder in FTP? Are these methods thread safe? dotnet ef not found in .NET Core 3 HTTP Error 500.30 - ANCM In-Process Start Failure Best way to "push" into C# array

Examples related to variables

When to create variables (memory management) How to print a Groovy variable in Jenkins? What does ${} (dollar sign and curly braces) mean in a string in Javascript? How to access global variables How to initialize a variable of date type in java? How to define a variable in a Dockerfile? Why does foo = filter(...) return a <filter object>, not a list? How can I pass variable to ansible playbook in the command line? How do I use this JavaScript variable in HTML? Static vs class functions/variables in Swift classes?

Examples related to naming

Android - Package Name convention .c vs .cc vs. .cpp vs .hpp vs .h vs .cxx Naming Classes - How to avoid calling everything a "<WhatEver>Manager"? What does the @ symbol before a variable name mean in C#?

Examples related to specifications

Java's L number (long) specification What does the @ symbol before a variable name mean in C#? How to encode the filename parameter of Content-Disposition header in HTTP?

Examples related to reserved-words

Syntax error due to using a reserved word as a table or column name in MySQL What is the equivalent of Java's final in C#? How do I escape a reserved word in Oracle? What does the @ symbol before a variable name mean in C#?