vote up 4 vote down star

Possible Duplicate:
What does the @ symbol before a variable name mean in C#?

Duplicate:

What does the @ symbol before a variable name mean in C#?

Sometimes I see some C# code where a method-parameter is prefixed with an @, like this:

public static void SomeStaticMethod( SomeType @parameterName )
{
}

What is the meaning of this ? Does it has some significant special meaning ?

I am creating an EventListener in NHibernate, and when I let VS.NET generate the interface methods, it generates the OnPostLoad method like this:

    public class PostLoadEventListener : IPostLoadEventListener
    {
        public void OnPostLoad( PostLoadEvent @event )
        {

        }
    }

Why is this ?

flag

67% accept rate
2  
This is one of those questions that come up reguralry and we could put into a tag-specific FAQ, check the relevant uservoice ticket: stackoverflow.uservoice.com/pages/1722-general/… – DrJokepu Jun 24 at 14:22

closed as exact duplicate by Michael Meadows, Rex M, Jeff Yates, Lucero, Shog9 Jun 24 at 22:14

3 Answers

vote up 18 vote down check

Try and make a variable named class and see what happens -- You'll notice you get an error.

This lets you used reserved words as variable names.

Unrelated, you'll also notice strings prefixed with @ as well -- This isn't the same thing...

string says = @"He said ""This literal string lets me use \ normally 
    and even line breaks"".";

This allows you to use 'literal' value of the string, meaning you can have new lines or characters without escapes, etc...

link|flag
I am familiar with prefixing strings with @ :) But prefixing variable names was new for me. Anyway, your explanation is very clear. – Frederik Gheysels Jun 24 at 14:37
vote up 5 vote down

The @ prefix allows you to use reserved words like class, interface, events, etc as variable names in C#. So you can do

int @int = 1
link|flag
4  
That example is going to give me nightmares. – JohnFx Jun 24 at 14:24
Ha ha! I know. I hunt such code down ruthlessly and blow it away! – Conrad Jun 24 at 14:29
Perhaps the example should be updated with something like int @double = (int)(1.0/0.0);. Then atleast the whole thing is painful. – James Schek Jun 24 at 15:45
vote up 9 vote down

event is a C# keyword, the @ is an escape character that allows you to use a keyword as a variable name.

link|flag
6  
Which is probably a bad idea... – Dervin Thunk Jun 24 at 14:22
I know I always avoid doing this, but it is an available feature. – Timothy Carter Jun 24 at 14:23
4  
Dervin: There are cases when you can't really avoid it, such as interfacing with assemblies written in other languages or previous versions of C#. – DrJokepu Jun 24 at 14:24
1  
But at the same time kinda necessary when you cannot predict what new keywords may be introduced in future versions of the language... you may after all have a pre 4.0 library that uses 'dynamic' as a symbol name, which you otherwise would no longer be able to fully access from a 4.0 application... – jerryjvl Jun 24 at 14:25
Since C# 1.0 no new reserved words have been added, only contextual keywords. This will be the case with dynamic as well. blogs.msdn.com/ericlippert/archive/… – Timothy Carter Jun 24 at 14:43

Not the answer you're looking for? Browse other questions tagged or ask your own question.