Possible Duplicates:
What does the @ symbol before a variable name mean in C#?
What's the use/meaning of the @ character in variable names in C#?
Hi,
I have one quick question. What does '@' char mean before parameter name in method declaration? Like following:
protected void Method1(Type1 @arg1, Type2 arg2)
...
I use c# with .net 3.5.
Thanks.