Possible Duplicate:
What's the @ in front of a string for .NET?
Sometimes i saw the sample code, will have a "@" symbol along with the string. for example:
EntityConnectionStringBuilder entityBuilder = new EntityConnectionStringBuilder();
entityBuilder.Provider = "System.Data.SqlServerCe.3.5";
entityBuilder.ProviderConnectionString = providerString;
entityBuilder.Metadata = @"res://*/App_Data.data.csdl|res://*/App_Data.data.ssdl|res://*/App_Data.data.msl";
On the 4th line, what is that usage of the "@"? I try to remove this, it still works.