Hello
lets say I have two variables
1 var = TR/21
2 var = /63c
how do I add 1 + 2 so that
3 var = TR/21/63c?
I understand I use set variable value but what is the code stating var + var 2?
Hello
lets say I have two variables
1 var = TR/21
2 var = /63c
how do I add 1 + 2 so that
3 var = TR/21/63c?
I understand I use set variable value but what is the code stating var + var 2?
@anon40731888
1 var.ToString+2 var.ToString
or
var1
with the value “TR/21”var2
with the value “/63c”Right it was that simple Thanks
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.