T
TheRain
Hi,
I am trying to append a carriage return to my string using the string
builder class, but when I do this the string ends up containing "13".
I tried this multiple ways like so
sb->Append('\r');
and also
sb->Append(System::Windows::Forms::Keys::Enter);
and lastly i tried
sb->Append((char)13);
I also tried that last one without the char type casting and my string
still contains 13 instead of a code for carriage return. Any ideas??
I am trying to append a carriage return to my string using the string
builder class, but when I do this the string ends up containing "13".
I tried this multiple ways like so
sb->Append('\r');
and also
sb->Append(System::Windows::Forms::Keys::Enter);
and lastly i tried
sb->Append((char)13);
I also tried that last one without the char type casting and my string
still contains 13 instead of a code for carriage return. Any ideas??