dragonwell
Programmer
I am creating a string from an array of characters using
When I add that variable (the new string) to a longer string and feed it to a TextWriter, the text gets truncated after the location of my variable.
The strange thing is, when I view it in the debugger the string is displayed (in red after I create it) like this
Note the missing quote? I figure that's what's causing it to truncate. What's going on?
Greetings,
Dragonwell
Code:
New String(myArray)
When I add that variable (the new string) to a longer string and feed it to a TextWriter, the text gets truncated after the location of my variable.
The strange thing is, when I view it in the debugger the string is displayed (in red after I create it) like this
Code:
"myString
Note the missing quote? I figure that's what's causing it to truncate. What's going on?
Greetings,
Dragonwell