@ added to Field

  • Thread starter Thread starter Jim Heavey
  • Start date Start date
J

Jim Heavey

I am retrieving values from my web config file with the ApplicationSettings
["FieldName"] and when I look at the contents being returned their is an
"@" sitting in front of the actual string. How did this get there and what
did I do to cause it to show up?

Thanks in advance for your assistance!!!!!!!!!!
 
Jim Heavey said:
I am retrieving values from my web config file with the ApplicationSettings
["FieldName"] and when I look at the contents being returned their is an
"@" sitting in front of the actual string. How did this get there and what
did I do to cause it to show up?

It's shown by the debugger when there are characters which would need
escaping if the string were entered in C# code - the idea is it's like
showing a verbatim string literal.
 
Back
Top