M
mp
why do i find samples containing something like
string fileName = @"C:\somefile"
what is the @ symbol doing in there?
I'm wondering if it has to do with why an equality check returns false on
two identical strings(actually a not equal test returns true when it should
return false)
if (doc.Name != fileName)
returns true when doc.Name and fileName are identical in terms of human
reading (it should return false)
thanks
mark
string fileName = @"C:\somefile"
what is the @ symbol doing in there?
I'm wondering if it has to do with why an equality check returns false on
two identical strings(actually a not equal test returns true when it should
return false)
if (doc.Name != fileName)
returns true when doc.Name and fileName are identical in terms of human
reading (it should return false)
thanks
mark