Hey, ive got two string types
string string1 = '1';
string string2 = '2';
string string3 = string1 + string2;
Ok, ive simplified my code. I would like string3 to equal '3', and not '12'. I dont know anything about casting.
Please dont tell me to use an integer datatype because as i said, ive simplified my code.