Hello
I have a little problem:
Is there someway to do this?
string 1 = 1111
string 2 = 1010
string 3 = string1 + string 2 = 11111010
Best Regards
Joriek
Do you mean some thing like
1 2 3 4 5 6
|
string one = "1111";
string two = "1010";
string three = one + two ;
|
Last edited on