Link to home
Start Free TrialLog in
Avatar of BrianMc1958
BrianMc1958

asked on

NEWBIE QUICKIE: Why the @ ?

Dear Experts:

I'm just learning C#.  I found this example on the web:

 string updateString = @"
     update Categories
     set CategoryName = 'Other'
     where CategoryName = 'Miscellaneous'";

What's the "@" for?  (It's part of an ADO.NET explanation, if that helps.)  It's not a typo, as it appears in the same position in similar statements...

Thanks!
--BrianMc1958
ASKER CERTIFIED SOLUTION
Avatar of pauljk1619
pauljk1619

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of BrianMc1958
BrianMc1958

ASKER

Thanks.  Looks like a nice little improvement from my old Java world...
--BrianMc1958