G
Grant Schenck
I can't seem to find a documentation describing this.
Thanks!
Grant Schenck
Thanks!
Grant Schenck
Nicholas Paldino said:Grant,
It means to treat the string as a literal. Without it, you can have
escape sequences in the string such as \t, \n and \r which represent single
characters (you use these because they are not printable characters). If
you use @, it treats the string exactly as it is.
Hope this helps.
--
- Nicholas Paldino [.NET/C# MVP]
- (e-mail address removed)
Grant Schenck said:I can't seem to find a documentation describing this.
Thanks!
Grant Schenck
Nicholas said:It means to treat the string as a literal. Without it, you can have
escape sequences in the string such as \t, \n and \r which represent single
characters (you use these because they are not printable characters). If
you use @, it treats the string exactly as it is.
Grant said:I tried searching help but @ is a hard character to search on!