.NET Tip: String Literals Without Escape Characters Minneapolis MN

Use @-quoted strings to avoid escape characters in your string literals.

Local Companies

Genuine Genuis Solutions
(612) 872-4256
431 Clifton Ave
Minneapolis, MN
Productive Corporation
612.375.0204
510 First Ave North Suite 310
Minneapolis, MN
Global Software
(612) 305-4472
10 S 5th St
Minneapolis, MN
Dairyland Healthcare Solutions
(952) 545-6314
1550 Utica Ave S
Minneapolis, MN
Bjl Software
651-293-0102
856 Raymond Ave
St. Paul, MN
Mastermine Software
651-917-5010
840 Hampden Ave
St. Paul, MN
Assessment Systems
651-647-9220
2233 University Ave W
St. Paul, MN
Business FX Corporation
651-646-7777
2324 University Ave W
St. Paul, MN
Diversified Solutions LLC
(612) 243-1234
5932 Chicago Ave
Minneapolis, MN
Church Management Solutions
(763) 566-4212
3300 County Road 10
Minneapolis, MN

provided by: 
Originally published at Internet.com


Today's tip is a very simple one, but if you are like me you will find yourself using it frequently. Do you have string literals that are filled with escape characters because they include characters that have a special meaning? One of the most common places you will find this is in file paths. If you don't want to have to worry about getting all of the backslashes correct, try using an @-quoted string instead. Say you have a variable like the following in your application: string AppDataFile = "C:\\Program Files\\My Application \\MyApp.dat";

This works fine, but can be hard to read and is more likely to be prone to errors if you do not escape all of the backslashes correctly. Another option, using @-quoted strings, removes the need to escape the backslashes. The @-quoted version of the above example looks like this: string AppDataFile = @"C:\Program Files\My Application \MyApp.dat";

The only changes are the addition of the @ sign before the opening quotation mark and the removal of the backslash to escape the other backslashes. This format matches the way you see file and directory paths displayed everywhere else in Windows. You can use @-quoted strings for more than paths, so take a look at your use of string literals and see where you can simplify you code and make it more readable.

About the Author

Jay Miller is a Software Engineer with Electronic Tracking Systems, a company dedicated to robbery prevention, apprehension, and recovery based in Carrollton, Texas. Jay has been working with .NET since the release of the first beta and is co-author of Learn Microsoft Visual Basic.Net In a Weekend. Jay can be reached via email at jmiller@sm-ets.com.

Author: Jay Miller

Read article at Internet.com site

Featured Local Company

Genuine Genuis Solutions

(612) 872-4256
431 Clifton Ave
Minneapolis, MN