billy_bob169
Active member
I am trying to Concatenate two strings in a VS.NET 2003 C++ Windows application, and I cannot seem to get it to work. Does anyone have any ideas? The statement doesnt do anything...the compiler does not blow up either! The MessageBox just shows the first string!
{
String *msg = "Customer Order\n";
msg->Concat(S" Processors\n");
MessageBox::Show(msg);
}
{
String *msg = "Customer Order\n";
msg->Concat(S" Processors\n");
MessageBox::Show(msg);
}