I\'m opening old C# code from my work using Reflector and I found out that there was an enum in an SQL class which looked like this:
public enum Column {
You need to prefix with a character literal (@ symbol) in order to use keywords.
@
MSDN (Thanks @erikH)