What does "@" mean in a lambda expression
Possible duplicate:
What does placing @ in front of a C # variable name do?
I am trying to learn C # lambda expressions. When I search for examples I see the below code
Where(@t => string.Compare(@t.Code, argument.Code, StringComparison.CurrentCultureIgnoreCase) == 0)
I'm wondering what does the "@" symbol in front of the t value mean?
+3
source to share