Aug 26
An interesting way to declare a variable in the same name as a reserved keyword in C# by prefixing @ before the variable name: Example:
int @int = 0;
This creates a variable name int holding the value 0.