J
Johann Blake
I want the following string to be created:
hello "Bob"
This is how I've been doing it up till now...
string s = "hello\"bob\"";
An alternative is...
string s = "hello ""Bob""";
Why is that it no longer works on my system? I keep getting
"hello\"Bob\""
No matter what I do, the backslash is always included. I even shut
down VS and restarted to no avail. Why all of a sudden doesn't this
work?
Thanks for your insight,
Johann Blake
hello "Bob"
This is how I've been doing it up till now...
string s = "hello\"bob\"";
An alternative is...
string s = "hello ""Bob""";
Why is that it no longer works on my system? I keep getting
"hello\"Bob\""
No matter what I do, the backslash is always included. I even shut
down VS and restarted to no avail. Why all of a sudden doesn't this
work?
Thanks for your insight,
Johann Blake