D
Daniel
How do I change a byte variable so that I can add it's character value to
the end of a variable of type string, such that:
String^ s = "1234";
byte b;
b= 53;
s = s + b;
thus s = "12345".
I wasn't able to use a cast.
s = s + (char)b;
did not work.
Daniel
the end of a variable of type string, such that:
String^ s = "1234";
byte b;
b= 53;
s = s + b;
thus s = "12345".
I wasn't able to use a cast.
s = s + (char)b;
did not work.
Daniel