[C# Helper]
Index Books FAQ Contact About Rod
[Beginning Database Design Solutions, Second Edition]

[Beginning Software Engineering, Second Edition]

[Essential Algorithms, Second Edition]

[The Modern C# Challenge]

[WPF 3d, Three-Dimensional Graphics with WPF and C#]

[The C# Helper Top 100]

[Interview Puzzles Dissected]

[C# 24-Hour Trainer]

[C# 5.0 Programmer's Reference]

[MCSD Certification Toolkit (Exam 70-483): Programming in C#]

Title: Understand the @ symbol in C#

[Understand the @ symbol in C#]

The @ symbol can be pretty confusing for some C# developers. I've even known a few who have been programming for quite a while but who still have incorrect assumptions about what @ does.

In your code (and only in your code!) a string literal may contain special two-character pairs starting with a backslash \ called "escape sequences" to represent special non-visible characters. For example, \n represents the newline character and \t represents a tab character.

If you want to place a backslash in a string, you need to "escape it" by placing another backslash in front of it so you get \\. For example, the following code puts the string "C:\temp\whatever" in the string variable my_path.

string my_path = "C:\\temp\\whatever";

If you need to type a lot of strings that contain backslashes, this gets pretty annoying. To make things a little easier, C# lets you add the @ symbol in front of a string to create a "verbatim string literal" where backslashes are not interpreted as escape characters. When you do this, you cannot embed special characters such as newlines and tabs within the string. The following code is equivalent to the previous code except it uses a string literal.

string my_path = @"C:\temp\whatever";

Remember that all of this only applies to your code and not to anything that the user enters, for example, in a TextBox or ComboBox. Anything the user types becomes part of the control's Text property with no escaping and no special meaning attached to the \ character. You do not need to worry about treating escape characters differently in anything the user types because the user cannot enter special characters that way. In other words, the user cannot enter a tab character by typing \t.

To make matters more confusing, C# also allows you to declare a variable with a name that starts with @ to create a "verbatim identifier." This lets you create variables named after keywords such as for and struct. Of course the variables are actually named @for and @struct so you don't quite get to name them after the keywords.

This seems like a really bad idea in any case. It will make your code harder to read and understand. Besides, if you really need to name a variable exit, you could use an underscore in front of it to get _exit. Still confusing but at least it doesn't drag the @ character into things to make them even more confusing.

The reason I'm worrying this issue so much is that I recently saw code similar to the following:

string user_first_name = @txtFirstName.Text;

I'm actually not completely sure what C# thinks it is doing with that @ symbol, but it does let the program continue running. What the programmer thought this did was protect the program from escape symbols, for example if the user entered \t. What it actually does is nothing. (I think it's completely bizarre that C# even allows this.)

The following code shows how the program demonstrates various string literals and other string issues when it starts.

private void Form1_Load(object sender, EventArgs e) { txtDoubleSlash.Text = "C:\\temp\\whatever"; txtAtSign.Text = @"C:\temp\whatever"; txtFirstLabel.Text = label1.Text; txtSecondLabel.Text = label2.Text; // Some poorly named variables that use @. string[] @foreach = { "A", "B", "C" }; foreach (string _foreach in @foreach) { Console.WriteLine(_foreach); } // Adding an @ doesn't change a TextBox's contents. Console.WriteLine(txtDoubleSlash.Text); Console.WriteLine(@txtDoubleSlash.Text); }

The code first displays two strings containing embedded backslashes in text boxes. The first statement escapes the backslashes. The second uses a verbatim string literal.

Next the code copies the text from two Label controls into two TextBox controls in the form's upper left. Notice that the result in the picture shows the values as they appear in the Label controls with no escaped craziness. The values in the Label controls' Text properties are as they should be and escaping doesn't apply.

The code then demonstrates a really confusing loop that uses the @ and _ symbols to make variables look like keywords. A bad idea!

The code finishes by displaying the text in the top TextBox with and without the @ symbol added to the statement. The results are the same regardless of whether there are backslashes in the TextBox.

If you enter some text in the TextBox above the button and then click the button, the following code executes.

private void btnShowValue_Click(object sender, EventArgs e) { txtResult.Text = txtEnteredValue.Text; }

This code displays the value entered in the TextBox. Again notice that it doesn't need to do anything about escape sequences.

In summary, you only need to worry about escape sequences or the @ symbol in string literals within your code. You don't need to worry about them in text typed by the user. This program doesn't demonstrate it, but you also don't need to worry about them in text that you read from a file or other data source.

And don't make verbatim identifiers. They're just plain confusing!

(Sorry to beat this issue to death but I do see a lot of confusion and mythology surrounding this issue.)

Download the example to experiment with it and to see additional details.

© 2009-2023 Rocky Mountain Computer Consulting, Inc. All rights reserved.