ChatGPT解决这个技术问题 Extra ChatGPT

What's the use/meaning of the @ character in variable names in C#?

I discovered that you can start your variable name with a '@' character in C#. In my C# project I was using a web service (I added a web reference to my project) that was written in Java. One of the interface objects defined in the WSDL had a member variable with the name "params". Obviously this is a reserved word in C# so you can't have a class with a member variable with the name "params". The proxy object that was generated contained a property that looked like this:

public ArrayList @params {
    get { return this.paramsField; }
    set { this.paramsField = value; }
}

I searched through the VS 2008 c# documentation but couldn't find anything about it. Also searching Google didn't give me any useful answers. So what is the exact meaning or use of the '@' character in a variable/property name?


S
Sampath Dilhan

Straight from the C# Language Specification, Identifiers (C#) :

The prefix "@" enables the use of keywords as identifiers, which is useful when interfacing with other programming languages. The character @ is not actually part of the identifier, so the identifier might be seen in other languages as a normal identifier, without the prefix. An identifier with an @ prefix is called a verbatim identifier.


what is the targeted minimal version of .NET supporting @?
.NET itself doesn't define the @ symbol like this, the C# language specification does. It has supported this since its first version, C# 1.0 (released with .NET 1.0). csharpindepth.com/articles/chapter1/Specifications.aspx
And for those wondering, in VB.NET you can use [ ] to specify a verbatim identifier, e.g. Dim [String] As String.
r
rslite

It just lets you use a reserved word as a variable name. Not recommended IMHO (except in cases like you have).


@rslite: +1 Not recommended :)
> never +1 Not recommended, but never say never. You may for example need to implement a legacy COM interface that uses a C# keyword as an identifier. Or Microsoft may introduce new keywords in new versions of the Framework - e.g. yield in a .NET 1.1 Bond trading app :)
@Joe: The new yield keyword is not a reserved word, and is only usable on contexts where no identifier could legally appear. One goal when designing new features for C# is to construct them in such a way that any program which would be legal before a new feature was added will be legal afterward and have the same meaning.
@Html.TextboxFor( , , , new { @class="my-css-class" } ) is a good example where you can't really get around it without having to manually write the HTML, or have javascript change the attributes at a later stage.
There is a new trend that is seen in Open Source software where all variables are prefixed with the "@" symbol in C# code. I believe this may be because of the familiarity of this requirement in PHP software for variables. And a lot of Open Source web systems are now coded in C# (where in the past it would have been PHP)
F
Faust

In C# the at (@) character is used to denote literals that explicitly do not adhere to the relevant rules in the language spec.

Specifically, it can be used for variable names that clash with reserved keywords (e.g. you can't use params but you can use @params instead, same with out/ref/any other keyword in the language specification). Additionally it can be used for unescaped string literals; this is particularly relevant with path constants, e.g. instead of path = "c:\\temp\\somefile.txt" you can write path = @"c:\temp\somefile.txt". It's also really useful for regular expressions.


Interesting point (and useful mnemonic) that the convention is the same between "verbatim-" or "here-strings" and parameter naming.
C
Colonel Panic

Unlike Perl's sigils, an @ prefix before a variable name in C# has no meaning. If x is a variable, @x is another name for the same variable.

> string x = "abc";
> Object.ReferenceEquals(x, @x).Dump();
True

But the @ prefix does have a use, as you've discovered - you can use it to clarify variables names that C# would otherwise reject as illegal.

> string string;
Identifier expected; 'string' is a keyword

> string @string;

U
Umar Abbas

The @ symbol allows you to use reserved keywords for variable name. like @int, @string, @double etc.

For example:

string @public = "Reserved Keyword used for me and its fine";

The above code works fine, but below will not work:

string public = "This will not compile";

M
Mark Embling

It simply allows you to use reserved words as variable names. I wanted a var called event the other day. I was going to go with _event instead, but my colleague reminded me that I could just call it @event instead.


B
BartoszKP

Another use case are extension methods. The first, special parameter can be distinguished to denote its real meaning with @this name. An example:

public static TValue GetValueOrDefault<TKey, TValue>(
    this IDictionary<TKey, TValue> @this,
    TKey key,
    TValue defaultValue)
    {
        if (!@this.ContainsKey(key))
        {
            return defaultValue;
        }

        return @this[key];
    }

r
raji vineeth

If we use a keyword as the name for an identifier, we get a compiler error “identifier expected, ‘Identifier Name’ is a keyword” To overcome this error, prefix the identifier with “@”. Such identifiers are verbatim identifiers. The character @ is not actually part of the identifier, so the identifier might be seen in other languages as a normal identifier, without the prefix


M
Mina Gabriel

You can use it to use the reserved keywords as variable name like

 int @int = 3; 

the compiler will ignores the @ and compile the variable as int

it is not a common practice to use thought