Possible Duplicate:
What does the @ symbol before a variable name mean in C#?
I've seen this a couple of times in code that has been passed onto me:
try {
   //Do some stuff
}
catch(Exception @exception)
{
   //Do catch stuff
}
Can anyone please explain the purpose of the '@' at the beginning of the Exception variable?
 
     
     
     
    