T
Thomas
I have the following managed code:
String* ts;
ts = S" test ";
ts = ts->Trim();
ts = ts->ToUpper();
The ToUpper does not work; at the end of this ts is still lower case. What
is the problem
Thanks!
String* ts;
ts = S" test ";
ts = ts->Trim();
ts = ts->ToUpper();
The ToUpper does not work; at the end of this ts is still lower case. What
is the problem
Thanks!