Is there any difference in how the C# compiler or .NET run-time handles verbatim string literals versus using escape sequences (i.e. performance) or is it just a matter of design time style? E.G.:
var pathA = "c:\\somewhere";
var pathB = @"c:\somewhere";
I would imagine they are compiled the same and it doesn't matter, but was just curious.