Possible Duplicate:
What does placing a @ in front of a C# variable name do?
I am trying to learn C# lambda expressions. As I search for examples I am seeing the below code
Where(@t => string.Compare(@t.Code, argument.Code, StringComparison.CurrentCultureIgnoreCase) == 0)
I am wondering what does the '@' symbole before the t mean?